Package com.datalogics.PDFL
Class PDFXConvertResult
java.lang.Object
com.datalogics.PDFL.PDFXConvertResult
Return the PDF/X compliant version of the document.
Contains a PDF document if the conversion is successful; returns null if the conversion fails.
PDF/X is a subset of the PDF ISO standard. The purpose of PDF/X is to facilitate
graphics exchange, and it therefore has a series of printing related requirements.
For example, in PDF/X-1a all fonts need to be embedded and all images need to be
CMYK or spot colors. PDF/X-3 accepts calibrated RGB and CIELAB colors.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturn the PDF/X compliant version of the document.Return the SaveFlags that must be used when saving the PDF/X compliant document.voidsetPDFXDocument(Document value) Set the PDF/X compliant version of the document.voidsetPDFXSaveFlags(EnumSet<SaveFlags> value) Set the SaveFlags that must be used when saving the PDF/X compliant document.
-
Constructor Details
-
PDFXConvertResult
-
PDFXConvertResult
public PDFXConvertResult()
-
-
Method Details
-
getPDFXDocument
Return the PDF/X compliant version of the document. This will return null if the conversion failed. -
setPDFXDocument
Set the PDF/X compliant version of the document. -
getPDFXSaveFlags
Return the SaveFlags that must be used when saving the PDF/X compliant document. You must use these SaveFlags when saving the PDF/X document, or you risk breaking PDF/X compliance. -
setPDFXSaveFlags
Set the SaveFlags that must be used when saving the PDF/X compliant document.
-