multivalent.std.adaptor.pdf
public class DecodeLZW extends FilterInputStream
From the PDF Reference:
Data encoded using the LZW compression method consists of a sequence of codes that are 9 to 12 bits long. Each code represents a single character of input data (<=255), a clear-table marker (256), an EOD marker (257), or a table entry representing a multiple-character sequence that has been encountered previously in the input (258 or greater).
Version: $Revision: 1.24 $ $Date: 2003/08/29 03:53:38 $
Constructor Summary | |
---|---|
DecodeLZW(InputStream in, Dict parms, PDFReader pdfr) |
Method Summary | |
---|---|
void | close() |
boolean | markSupported() |
int | read(byte[] b, int off, int len) Speeds up phrase writing as opposed to read. |
int | read() |