Package com.reportmill.base
Class RMCodecLZW
java.lang.Object
com.reportmill.base.RMCodecLZW
This class decodes LZW encoded bytes.
- 
Constructor SummaryConstructorsConstructorDescriptionRMCodecLZW(byte[] bytes, int offset, int length, int predictor1, int columns1, int colors1, int bits1, int early1) Creates a new LZW decoder for given bytes.
- 
Method SummaryModifier and TypeMethodDescriptionstatic byte[]decode(byte[] bytes, int offset, int length, int predictor, int columns, int colors, int bits, int early) Returns a decoded byte array for given LZW encoded byte array.
- 
Constructor Details- 
RMCodecLZWpublic RMCodecLZW(byte[] bytes, int offset, int length, int predictor1, int columns1, int colors1, int bits1, int early1) Creates a new LZW decoder for given bytes.
 
- 
- 
Method Details- 
decodepublic static byte[] decode(byte[] bytes, int offset, int length, int predictor, int columns, int colors, int bits, int early) Returns a decoded byte array for given LZW encoded byte array.
 
-