Home » pdfbox-1.1.0-src » org.apache.pdfbox.filter » [javadoc | source]
org.apache.pdfbox.filter
public interface: Filter [javadoc | source]

All Known Implementing Classes:
    DCTFilter, CCITTFaxDecodeFilter, RunLengthDecodeFilter, ASCII85Filter, LZWFilter, ASCIIHexFilter, FlateFilter

This is the interface that will be used to apply filters to a byte stream.
Method from org.apache.pdfbox.filter.Filter Summary:
decode,   encode
Method from org.apache.pdfbox.filter.Filter Detail:
 public  void decode(InputStream compressedData,
    OutputStream result,
    COSDictionary options,
    int filterIndex) throws IOException
    This will decode some compressed data.
 public  void encode(InputStream rawData,
    OutputStream result,
    COSDictionary options,
    int filterIndex) throws IOException
    This will encode some data.