| java.lang.Object com.sun.pdfview.decode.PDFDecoder
PDFDecoder | public class PDFDecoder (Code) | | A PDF Decoder encapsulates all the methods of decoding a stream of bytes
based on all the various encoding methods.
You should use the decodeStream() method of this object rather than using
any of the decoders directly.
|
Method Summary | |
public static ByteBuffer | decodeStream(PDFObject dict, ByteBuffer streamBuf) decode a byte[] stream using the filters specified in the object's
dictionary (passed as argument 1). |
decodeStream | public static ByteBuffer decodeStream(PDFObject dict, ByteBuffer streamBuf) throws IOException(Code) | | decode a byte[] stream using the filters specified in the object's
dictionary (passed as argument 1).
Parameters: dict - the dictionary associated with the stream Parameters: streamBuf - the data in the stream, as a byte buffer |
|
|