'Declaration Public Property OptimizeForPdfa As Boolean
'Usage Dim instance As ImGearRecPDFOutputOptions Dim value As Boolean instance.OptimizeForPdfa = value value = instance.OptimizeForPdfa
public bool OptimizeForPdfa {get; set;}
'Declaration Public Property OptimizeForPdfa As Boolean
'Usage Dim instance As ImGearRecPDFOutputOptions Dim value As Boolean instance.OptimizeForPdfa = value value = instance.OptimizeForPdfa
public bool OptimizeForPdfa {get; set;}
If this property is true
, all fonts used in the PDF will be fully embedded in the document and a document structure will be created with any text content tagged appropriately.
For PDF documents that need to be compatible with the PDF/A-1a standard, this property should be set to true
because embedded fonts and the use of tags is a requirement for PDF/A-1. If file size is a priority over archiving (i.e. PDF/A-1a), then consider changing this property to false
so the fonts won't be embedded and the structure elements will not be added.