Class XTIFFPackTileCodec

  • All Implemented Interfaces:
    XTIFFTileCodec

    public class XTIFFPackTileCodec
    extends XTIFFTileCodecImpl
    This codec encapsulates all the logic for the default TIFF "packbits" bit-packing codec algorithm.
    • Constructor Detail

      • XTIFFPackTileCodec

        public XTIFFPackTileCodec()
    • Method Detail

      • canEncode

        public boolean canEncode()
        Description copied from class: XTIFFTileCodecImpl
        Indicate whether this codec can encode data. Override to return true only if your codec implments encoding.
        Overrides:
        canEncode in class XTIFFTileCodecImpl
      • encodeTilePixels

        public int encodeTilePixels​(int[] pixels,
                                    Rectangle newRect,
                                    byte[] bpixels)
        encode the tile into bpixels and return the byte size (uncompressed packing algorithm). The padding has already been done, so we may safely assume that pixels is exactly rows by cols by numBands ints.
        Overrides:
        encodeTilePixels in class XTIFFTileCodecImpl
        Parameters:
        pixels - input pixels
        newRect - the array dimensions of samples
        bpixels - the target array of compressed byte data
      • decodeTilePixels

        public void decodeTilePixels​(byte[] input,
                                     Rectangle newRect,
                                     byte[] bdata)
        Decode a rectangle of pixels
        Specified by:
        decodeTilePixels in class XTIFFTileCodecImpl
        Parameters:
        input - the byte array of compressed input data
        newRect - the rectangular shape of the target pixels
        bdata - the target decompressed pixels.
      • decodeTilePixels

        public void decodeTilePixels​(byte[] input,
                                     Rectangle newRect,
                                     short[] sdata)
        Decode a rectangle of pixels
        Specified by:
        decodeTilePixels in class XTIFFTileCodecImpl
        Parameters:
        input - the byte array of compressed input data
        newRect - the rectangular shape of the target pixels
        sdata - the target decompressed pixels.