java.lang.Object
org.sejda.sambox.filter.Filter
org.sejda.sambox.filter.LZWFilter
This is the filter used for the LZWDecode filter.
- Author:
- Ben Litchfield, Tilman Hausherr
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final longThe LZW clear table code.static final longThe LZW end of data code.Fields inherited from class org.sejda.sambox.filter.Filter
SYSPROP_DEFLATELEVEL -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondecode(InputStream encoded, OutputStream decoded, COSDictionary parameters, int index) Decodes data, producing the original non-encoded data.voidencode(InputStream rawData, OutputStream encoded, COSDictionary parameters) Encodes data.Methods inherited from class org.sejda.sambox.filter.Filter
findImageReader, getCompressionLevel, getDecodeParams
-
Field Details
-
CLEAR_TABLE
public static final long CLEAR_TABLEThe LZW clear table code.- See Also:
-
EOD
public static final long EODThe LZW end of data code.- See Also:
-
-
Constructor Details
-
LZWFilter
public LZWFilter()
-
-
Method Details
-
decode
public DecodeResult decode(InputStream encoded, OutputStream decoded, COSDictionary parameters, int index) throws IOException Decodes data, producing the original non-encoded data.- Specified by:
decodein classFilter- Parameters:
encoded- the encoded byte streamdecoded- the stream where decoded data will be writtenparameters- the parameters used for decodingindex- the index to the filter being decoded- Returns:
- repaired parameters dictionary, or the original parameters dictionary
- Throws:
IOException- if the stream cannot be decoded
-
encode
public void encode(InputStream rawData, OutputStream encoded, COSDictionary parameters) throws IOException Description copied from class:FilterEncodes data.- Specified by:
encodein classFilter- Parameters:
rawData- the byte stream to encodeencoded- the stream where encoded data will be writtenparameters- the parameters used for encoding- Throws:
IOException- if the stream cannot be encoded
-