Class RMCodecLZW

java.lang.Object
com.reportmill.base.RMCodecLZW

public class RMCodecLZW extends Object
This class decodes LZW encoded bytes.
  • Constructor Summary

    Constructors
    Constructor
    Description
    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 Summary

    Modifier and Type
    Method
    Description
    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.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • RMCodecLZW

      public 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

    • decode

      public 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.