Zum Hauptinhalt springen
Mit diesem Objekt können Sie die Verarbeitungsparameter für PDF-Eingabedateien vom Typ „nur Bild“ oder „Bild mit Text“ anpassen, wenn Sie mithilfe der InjectTextLayer-Methode des Engine-Objekts eine durchsuchbare PDF-Datei erstellen. Die Eigenschaften eines neu erstellten Objekts dieses Typs sind auf sinnvolle Standardwerte gesetzt (siehe Beschreibung der Eigenschaften).

Eigenschaften

,read-only

Returns the Engine object.

Specifies whether to change the appearance of the output PDF file in case of problems during its processing.

This property is FALSE by default, which means whenever the document is invalid, you will get the FREN_E_PDFA_CONVERSION_FAILED return code, and the document processing will be canceled.
If this property is TRUE, a warning about changing the appearance of the output will be displayed. Use thecallback to manage the document processing.

Specifies the PDF/A standard compliance for the output PDF file.

This property is PCM_None by default, which means that the output file inherits the PDF/A standard compliance from the original document.

Specifies whether the document processing should be performed during text layer injection.

This property is TRUE by default. If this property is FALSE, the original document will be converted without text layer injection.

Specifies if skew and orientation correction should be performed on the original document. When this property is set to TRUE, the final document will contain the corrected image.

This property is available only if theCorrectOrientationModeproperty of thePagePreprocessingParamsobject is not set to COM_No. Otherwise, skew and orientation will not be corrected.

This property is FALSE by default.

Specifies if the resulting PDF document should be tagged.

Tagged PDF is a particular use of structured PDF that allows page content to be extracted and used for various purposes such as reflow of text and graphics, conversion to file formats such as HTML and XML, and accessibility to the visually impaired.

The exported PDF may contain tags:

  • <DIV> (division elements)
  • <P> (paragraphs)
  • <SPAN> (entry elements)
  • <L> (list elements, list item elements, list item body elements etc)
  • <Caption> (signatures)
  • <Figure> (images)
  • <Link> (external links)
  • <InternalLink> (internal links)
  • <Lbl> (numerators and markers)
  • <RunningTitle> (running titles)
  • <Note> (note entry elements)
  • <Footnote> (explanatory text elements)
  • <Reference> (reference entry elements).

Darüber hinaus werden Absätze mit unterschiedlichen Sprachen in Textfragmente mit <SPAN>-Tags aufgeteilt. Jedes <SPAN>-Tag enthält Text in einer einzigen Sprache.

Diese Eigenschaft muss auf TRUE gesetzt werden:
  • wenn die Eigenschaft PDFAComplianceMode auf PCM_Pdfa_1a, PCM_Pdfa_2a oder PCM_Pdfa_3a gesetzt ist, da PDF/A-1a, PDF/A-2a und PDF/A-3a stets mit Tags versehen sind.
  • wenn die Eigenschaft PDFAComplianceMode standardmäßig auf PCM_None gesetzt ist, aber PCM_Pdfa_1a, PCM_Pdfa_2a oder PCM_Pdfa_3a als Eingabeparameter übergeben werden.

Der Standardwert dieser Eigenschaft ist FALSE. Wenn die Quell-PDF-Datei jedoch mit Tags versehen ist, wird der Wert dieser Eigenschaft ignoriert und die resultierende PDF-Datei ist stets mit Tags versehen.

Ausgabeparameter

Dieses Objekt ist der Ausgabeparameter der Methode CreateTextLayerInjectionParams des Objekts Engine.

Eingabeparameter

Dieses Objekt wird als Eingabeparameter an die InjectTextLayer-Methode des Engine-Objekts übergeben.

Siehe auch

Arbeiten mit Profilen