loci.formats.codec
Class NikonCodec

java.lang.Object
  extended by loci.formats.codec.BaseCodec
      extended by loci.formats.codec.NikonCodec
All Implemented Interfaces:
Codec

public class NikonCodec
extends BaseCodec
implements Codec

This class implements Nikon decompression. Compression is not yet implemented.

Source code:
Trac, SVN

Author:
Melissa Linkert linkert at wisc.edu

Constructor Summary
NikonCodec()
           
 
Method Summary
 byte[] compress(byte[] data, int x, int y, int[] dims, Object options)
          Compresses a block of Nikon data.
 byte[] decompress(byte[] input, Object options)
          Decodes an image strip using Nikon's compression algorithm (a variant on Huffman coding).
 
Methods inherited from class loci.formats.codec.BaseCodec
compress, decompress, decompress, decompress, test
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface loci.formats.codec.Codec
compress, decompress, decompress, decompress
 

Constructor Detail

NikonCodec

public NikonCodec()
Method Detail

compress

public byte[] compress(byte[] data,
                       int x,
                       int y,
                       int[] dims,
                       Object options)
                throws loci.formats.FormatException
Compresses a block of Nikon data. Currently not supported.

Specified by:
compress in interface Codec
Parameters:
data - the data to be compressed
x - length of the x dimension of the image data, if appropriate
y - length of the y dimension of the image data, if appropriate
dims - the dimensions of the image data, if appropriate
options - options to be used during compression, if appropriate
Returns:
The compressed data
Throws:
loci.formats.FormatException - If input is not an Adobe data block.

decompress

public byte[] decompress(byte[] input,
                         Object options)
                  throws loci.formats.FormatException
Decodes an image strip using Nikon's compression algorithm (a variant on Huffman coding). TODO : this is broken

Specified by:
decompress in interface Codec
Parameters:
input - input data to be decompressed
options - Options to be used during decompression.
Returns:
The decompressed data
Throws:
loci.formats.FormatException - if data is not valid compressed data for this decompressor