Package com.pdftools.pdf
Class OutputOptions
java.lang.Object
com.pdftools.internal.NativeBase
com.pdftools.internal.NativeObject
com.pdftools.pdf.OutputOptions
- Direct Known Subclasses:
OutputOptions
The parameters for document-level features of output PDFs
Output options are used in many operations that create PDF documents.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe parameters to encrypt output PDFs (Getter)Default:null, metadata are copied to the output document.voidsetEncryption(Encryption value) The parameters to encrypt output PDFs (Setter)voidDefault:null, metadata are copied to the output document.Methods inherited from class com.pdftools.internal.NativeObject
equals, hashCode
-
Constructor Details
-
OutputOptions
public OutputOptions()
-
-
Method Details
-
getEncryption
The parameters to encrypt output PDFs (Getter)
If
null, no encryption is used.Encryption is not allowed by the PDF/A ISO standards. For that reason, it is recommended to use
nullwhen processing PDF/A documents. Otherwise, most operations will remove PDF/A conformance from the output document. More details can be found in the documentation of the operation.Default:
null, no encryption is used. -
setEncryption
The parameters to encrypt output PDFs (Setter)
If
null, no encryption is used.Encryption is not allowed by the PDF/A ISO standards. For that reason, it is recommended to use
nullwhen processing PDF/A documents. Otherwise, most operations will remove PDF/A conformance from the output document. More details can be found in the documentation of the operation.Default:
null, no encryption is used. -
getMetadataSettings
Default:null, metadata are copied to the output document. -
setMetadataSettings
Default:null, metadata are copied to the output document.
-