Uses of Class
org.apache.pdfbox.filter.Filter
-
Packages that use Filter Package Description org.apache.pdfbox.cos These are the low level objects that make up a PDF document.org.apache.pdfbox.filter This package will hold the PDFBox implementations of the filters that are used in PDF documents. -
-
Uses of Filter in org.apache.pdfbox.cos
Fields in org.apache.pdfbox.cos with type parameters of type Filter Modifier and Type Field Description private java.util.List<Filter>COSOutputStream. filtersMethods in org.apache.pdfbox.cos that return types with arguments of type Filter Modifier and Type Method Description private java.util.List<Filter>COSStream. getFilterList()Returns the list of filters.Method parameters in org.apache.pdfbox.cos with type arguments of type Filter Modifier and Type Method Description (package private) static COSInputStreamCOSInputStream. create(java.util.List<Filter> filters, COSDictionary parameters, java.io.InputStream in)Creates a new COSInputStream from an encoded input stream.(package private) static COSInputStreamCOSInputStream. create(java.util.List<Filter> filters, COSDictionary parameters, java.io.InputStream in, DecodeOptions options)Creates a new COSInputStream from an encoded input stream.Constructor parameters in org.apache.pdfbox.cos with type arguments of type Filter Constructor Description COSOutputStream(java.util.List<Filter> filters, COSDictionary parameters, java.io.OutputStream output, RandomAccessStreamCache streamCache)Creates a new COSOutputStream writes to an encoded COS stream. -
Uses of Filter in org.apache.pdfbox.filter
Subclasses of Filter in org.apache.pdfbox.filter Modifier and Type Class Description (package private) classASCII85FilterDecodes data encoded in an ASCII base-85 representation, reproducing the original binary data.(package private) classASCIIHexFilterDecodes data encoded in an ASCII hexadecimal form, reproducing the original binary data.(package private) classCCITTFaxFilterDecodes image data that has been encoded using either Group 3 or Group 4 CCITT facsimile (fax) encoding, and encodes image data to Group 4.(package private) classCryptFilterDecrypts data encrypted by a security handler, reproducing the data as it was before encryption.(package private) classDCTFilterDecompresses data encoded using a DCT (discrete cosine transform) technique based on the JPEG standard.(package private) classFlateFilterDecompresses data encoded using the zlib/deflate compression method, reproducing the original text or binary data.(package private) classIdentityFilterThe IdentityFilter filter passes the data through without any modifications.(package private) classJBIG2FilterDecompresses data encoded using the JBIG2 standard, reproducing the original monochrome (1 bit per pixel) image data (or an approximation of that data).classJPXFilterDecompress data encoded using the wavelet-based JPEG 2000 standard, reproducing the original data.classLZWFilterThis is the filter used for the LZWDecode filter.(package private) classRunLengthDecodeFilterDecompresses data encoded using a byte-oriented run-length encoding algorithm, reproducing the original text or binary dataFields in org.apache.pdfbox.filter with type parameters of type Filter Modifier and Type Field Description private java.util.Map<COSName,Filter>FilterFactory. filtersMethods in org.apache.pdfbox.filter that return Filter Modifier and Type Method Description FilterFilterFactory. getFilter(java.lang.String filterName)Returns a filter instance given its name as a string.FilterFilterFactory. getFilter(COSName filterName)Returns a filter instance given its COSName.Methods in org.apache.pdfbox.filter that return types with arguments of type Filter Modifier and Type Method Description (package private) java.util.Collection<Filter>FilterFactory. getAllFilters()Method parameters in org.apache.pdfbox.filter with type arguments of type Filter Modifier and Type Method Description static RandomAccessReadFilter. decode(java.io.InputStream encoded, java.util.List<Filter> filterList, COSDictionary parameters, DecodeOptions options, java.util.List<DecodeResult> results)Decodes data, with optional DecodeOptions.
-