Uses of Class
com.itextpdf.kernel.pdf.WriterProperties
-
Packages that use WriterProperties Package Description com.itextpdf.kernel.pdf com.itextpdf.kernel.utils com.itextpdf.svg.converter -
-
Uses of WriterProperties in com.itextpdf.kernel.pdf
Fields in com.itextpdf.kernel.pdf declared as WriterProperties Modifier and Type Field Description protected WriterProperties
PdfWriter. properties
Methods in com.itextpdf.kernel.pdf that return WriterProperties Modifier and Type Method Description WriterProperties
WriterProperties. addUAXmpMetadata()
This method marks the document as PDF/UA and sets related flags is XMPMetaData.WriterProperties
WriterProperties. addXmpMetadata()
If true, default XMPMetadata based onPdfDocumentInfo
will be added.WriterProperties
PdfWriter. getProperties()
Gets the writer properties.WriterProperties
WriterProperties. setCompressionLevel(int compressionLevel)
Defines the level of compression for the document.WriterProperties
WriterProperties. setFullCompressionMode(boolean fullCompressionMode)
Defines if full compression mode is enabled.WriterProperties
WriterProperties. setInitialDocumentId(PdfString initialDocumentId)
The /ID entry of a document contains an array with two entries.WriterProperties
WriterProperties. setModifiedDocumentId(PdfString modifiedDocumentId)
The /ID entry of a document contains an array with two entries.WriterProperties
WriterProperties. setPdfVersion(PdfVersion version)
Defines pdf version for the created document.WriterProperties
WriterProperties. setPublicKeyEncryption(java.security.cert.Certificate[] certs, int[] permissions, int encryptionAlgorithm)
Sets the certificate encryption options for the document.WriterProperties
WriterProperties. setStandardEncryption(byte[] userPassword, byte[] ownerPassword, int permissions, int encryptionAlgorithm)
Sets the encryption options for the document.WriterProperties
WriterProperties. useSmartMode()
Enables smart mode.Methods in com.itextpdf.kernel.pdf with parameters of type WriterProperties Modifier and Type Method Description private static void
PdfDocument. overrideFullCompressionInWriterProperties(WriterProperties properties, boolean readerHasXrefStream)
Constructors in com.itextpdf.kernel.pdf with parameters of type WriterProperties Constructor Description PdfWriter(java.io.OutputStream os, WriterProperties properties)
PdfWriter(java.lang.String filename, WriterProperties properties)
Create a PdfWriter writing to the passed filename and using the passed writer properties. -
Uses of WriterProperties in com.itextpdf.kernel.utils
Methods in com.itextpdf.kernel.utils with parameters of type WriterProperties Modifier and Type Method Description static PdfWriter
CompareTool. createTestPdfWriter(java.lang.String filename, WriterProperties properties)
CreatePdfWriter
optimized for tests.Constructors in com.itextpdf.kernel.utils with parameters of type WriterProperties Constructor Description MemoryFirstPdfWriter(java.lang.String filename, WriterProperties properties)
MemoryFirstPdfWriter(java.lang.String filename, java.io.ByteArrayOutputStream outputStream, WriterProperties properties)
-
Uses of WriterProperties in com.itextpdf.svg.converter
Methods in com.itextpdf.svg.converter with parameters of type WriterProperties Modifier and Type Method Description static void
SvgConverter. createPdf(java.io.File svgFile, java.io.File pdfFile, WriterProperties writerProps)
static void
SvgConverter. createPdf(java.io.File svgFile, java.io.File pdfFile, ISvgConverterProperties props, WriterProperties writerProps)
Converts SVG stored in aFile
to a PDFFile
, using specificISvgConverterProperties
andWriterProperties
.static void
SvgConverter. createPdf(java.io.InputStream svgStream, java.io.OutputStream pdfDest, WriterProperties writerProps)
Create a single page pdf containing the SVG on its page using the default processing and drawing logicstatic void
SvgConverter. createPdf(java.io.InputStream svgStream, java.io.OutputStream pdfDest, ISvgConverterProperties props, WriterProperties writerProps)
Create a single page pdf containing the SVG on its page using the default processing and drawing logic
-