Enum PdfAConversionOptions.FallbackBehavior
Determines what happens when the document contains features that the conforming rewrite cannot repair (non-embedded fonts, DeviceCMYK content, LZW compression, or transparency for PDF/A-1 targets).
public enum PdfAConversionOptions.FallbackBehavior
Fields
Rasterize = 0Rebuild the document from rendered page images with an invisible text layer carried over from the source text. Guarantees a conforming result at the cost of converting vector content to raster. Default.
Fail = 1Throw a PdfDocumentException instead of producing a non-conforming output.
ReportOnly = 2Convert anyway and list the remaining violations in the report. The output carries PDF/A identification metadata but does not fully conform.