Uses of Interface
org.apache.pdfbox.filter.Filter
-
Packages that use Filter Package Description 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.filter
Classes in org.apache.pdfbox.filter that implement Filter Modifier and Type Class Description class
ASCII85Filter
This is the used for the ASCIIHexDecode filter.class
ASCIIHexFilter
This is the used for the ASCIIHexDecode filter.class
CCITTFaxDecodeFilter
This is a filter for the CCITTFax Decoder.class
CryptFilter
class
DCTFilter
This is the used for the DCTDecode filter.class
FlateFilter
This is the used for the FlateDecode filter.class
IdentityFilter
The IdentityFilter filter just passes the data through without any modifications.class
JBIG2Filter
Modeled on the JBIG2Decode filter.class
JPXFilter
This is used for the JPXDecode filter.class
LZWFilter
This is the filter used for the LZWDecode filter.class
RunLengthDecodeFilter
This is a filter for the RunLength Decoder.Methods in org.apache.pdfbox.filter that return Filter Modifier and Type Method Description Filter
FilterManager. getFilter(java.lang.String filterName)
This will get a filter by name.Filter
FilterManager. getFilter(COSName filterName)
This will get a filter by name.Methods in org.apache.pdfbox.filter that return types with arguments of type Filter Modifier and Type Method Description java.util.Collection<Filter>
FilterManager. getFilters()
This will get all of the filters that are available in the system.Methods in org.apache.pdfbox.filter with parameters of type Filter Modifier and Type Method Description void
FilterManager. addFilter(COSName filterName, Filter filter)
This will add an available filter.
-