Uses of Class
com.itextpdf.kernel.pdf.ReaderProperties
-
Packages that use ReaderProperties Package Description com.itextpdf.kernel.pdf com.itextpdf.kernel.utils -
-
Uses of ReaderProperties in com.itextpdf.kernel.pdf
Fields in com.itextpdf.kernel.pdf declared as ReaderProperties Modifier and Type Field Description protected ReaderProperties
PdfReader. properties
Methods in com.itextpdf.kernel.pdf that return ReaderProperties Modifier and Type Method Description ReaderProperties
ReaderProperties. setMemoryLimitsAwareHandler(MemoryLimitsAwareHandler memoryLimitsAwareHandler)
Sets the memory handler which will be used to handle decompressed PDF streams.ReaderProperties
ReaderProperties. setPassword(byte[] password)
Defines the password which will be used if the document is encrypted with standard encryption.ReaderProperties
ReaderProperties. setPublicKeySecurityParams(java.security.cert.Certificate certificate, IExternalDecryptionProcess externalDecryptionProcess)
Defines the certificate which will be used if the document is encrypted with public key encryption (see Pdf 1.7 specification, 7.6.4.ReaderProperties
ReaderProperties. setPublicKeySecurityParams(java.security.cert.Certificate certificate, java.security.Key certificateKey, java.lang.String certificateKeyProvider, IExternalDecryptionProcess externalDecryptionProcess)
Defines the certificate which will be used if the document is encrypted with public key encryption (see Pdf 1.7 specification, 7.6.4.Constructors in com.itextpdf.kernel.pdf with parameters of type ReaderProperties Constructor Description PdfReader(IRandomAccessSource byteSource, ReaderProperties properties)
Constructs a new PdfReader.PdfReader(IRandomAccessSource byteSource, ReaderProperties properties, boolean closeStream)
PdfReader(java.io.File file, ReaderProperties properties)
Reads and parses a PDF document.PdfReader(java.io.InputStream is, ReaderProperties properties)
Reads and parses a PDF document.PdfReader(java.lang.String filename, ReaderProperties properties)
Reads and parses a PDF document. -
Uses of ReaderProperties in com.itextpdf.kernel.utils
Fields in com.itextpdf.kernel.utils declared as ReaderProperties Modifier and Type Field Description private ReaderProperties
CompareTool. cmpProps
private ReaderProperties
CompareTool. outProps
Methods in com.itextpdf.kernel.utils that return ReaderProperties Modifier and Type Method Description ReaderProperties
CompareTool. getCmpReaderProperties()
GetsReaderProperties
to be passed later to thePdfReader
of the cmp document.ReaderProperties
CompareTool. getOutReaderProperties()
GetsReaderProperties
to be passed later to thePdfReader
of the output document.Methods in com.itextpdf.kernel.utils with parameters of type ReaderProperties Modifier and Type Method Description static PdfReader
CompareTool. createOutputReader(java.lang.String filename, ReaderProperties properties)
CreatePdfReader
out of the data created recently or read from disk.
-