Table of Contents

Enum PdfAConversionOptions.FallbackBehavior

Namespace
LMKit.Document.Pdf
Assembly
LM-Kit.NET.dll

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 = 0

Rebuild 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 = 1

Throw a PdfDocumentException instead of producing a non-conforming output.

ReportOnly = 2

Convert anyway and list the remaining violations in the report. The output carries PDF/A identification metadata but does not fully conform.

Share