Package | Description |
---|---|
loci.formats |
Bio-Formats: a library for reading and writing popular microscopy file
formats.
|
loci.formats.codec |
Package containing Bio-Formats compression and decompression logic.
|
loci.formats.tiff |
Package containing Bio-Formats TIFF code of general utility.
|
Modifier and Type | Field and Description |
---|---|
protected CodecOptions |
FormatWriter.options
The options if required.
|
Modifier and Type | Method and Description |
---|---|
void |
IFormatWriter.setCodecOptions(CodecOptions options)
Sets the codec options.
|
void |
FormatWriter.setCodecOptions(CodecOptions options) |
void |
WriterWrapper.setCodecOptions(CodecOptions options) |
void |
ImageWriter.setCodecOptions(CodecOptions options) |
Modifier and Type | Class and Description |
---|---|
class |
HuffmanCodecOptions
Options for compressing and decompressing Huffman data.
|
class |
JPEG2000CodecOptions
Options for compressing and decompressing JPEG-2000 data.
|
class |
MJPBCodecOptions
Options for compressing and decompressing MJPB data.
|
class |
NikonCodecOptions
Options for compressing and decompressing Nikon NEF data.
|
Modifier and Type | Method and Description |
---|---|
static CodecOptions |
CodecOptions.getDefaultOptions()
Return CodecOptions with reasonable default values.
|
Modifier and Type | Method and Description |
---|---|
byte[] |
BaseCodec.compress(byte[][] data,
CodecOptions options)
2D data block encoding default implementation.
|
byte[] |
Codec.compress(byte[][] data,
CodecOptions options)
Compresses a block of data.
|
byte[] |
JPEG2000Codec.compress(byte[] data,
CodecOptions options)
The CodecOptions parameter should have the following fields set:
width
height
bitsPerSample
channels
interleaved
littleEndian
lossless |
byte[] |
LosslessJPEGCodec.compress(byte[] data,
CodecOptions options) |
byte[] |
LZOCodec.compress(byte[] data,
CodecOptions options) |
byte[] |
NikonCodec.compress(byte[] data,
CodecOptions options) |
byte[] |
LZWCodec.compress(byte[] input,
CodecOptions options) |
byte[] |
MSRLECodec.compress(byte[] data,
CodecOptions options) |
byte[] |
Base64Codec.compress(byte[] input,
CodecOptions options) |
byte[] |
MJPBCodec.compress(byte[] data,
CodecOptions options) |
byte[] |
JPEGCodec.compress(byte[] data,
CodecOptions options)
The CodecOptions parameter should have the following fields set:
width
height
channels
bitsPerSample
interleaved
littleEndian
signed |
byte[] |
HuffmanCodec.compress(byte[] data,
CodecOptions options) |
byte[] |
QTRLECodec.compress(byte[] data,
CodecOptions options) |
byte[] |
ZlibCodec.compress(byte[] data,
CodecOptions options) |
byte[] |
PackbitsCodec.compress(byte[] data,
CodecOptions options) |
byte[] |
MSVideoCodec.compress(byte[] data,
CodecOptions options) |
byte[] |
LuraWaveCodec.compress(byte[] data,
CodecOptions options) |
byte[] |
PassthroughCodec.compress(byte[] data,
CodecOptions options) |
byte[] |
RPZACodec.compress(byte[] input,
CodecOptions options) |
byte[] |
TargaRLECodec.compress(byte[] data,
CodecOptions options) |
byte[] |
Codec.compress(byte[] data,
CodecOptions options)
Compresses a block of data.
|
byte[] |
BaseCodec.decompress(byte[][] data,
CodecOptions options)
2D data block decoding default implementation.
|
byte[] |
Codec.decompress(byte[][] data,
CodecOptions options)
Decompresses a block of data.
|
byte[] |
JPEG2000Codec.decompress(byte[] buf,
CodecOptions options)
The CodecOptions parameter should have the following fields set:
interleaved
littleEndian |
byte[] |
BaseCodec.decompress(byte[] data,
CodecOptions options) |
byte[] |
QTRLECodec.decompress(byte[] data,
CodecOptions options)
The CodecOptions parameter should have the following fields set:
width
height
bitsPerSample
previousImage |
byte[] |
LuraWaveCodec.decompress(byte[] buf,
CodecOptions options)
The CodecOptions parameter should have the following fields set:
maxBytes |
byte[] |
PassthroughCodec.decompress(byte[] data,
CodecOptions options) |
byte[] |
Codec.decompress(byte[] data,
CodecOptions options)
Decompresses a block of data.
|
byte[] |
JPEG2000Codec.decompress(RandomAccessInputStream in,
CodecOptions options)
The CodecOptions parameter should have the following fields set:
interleaved
littleEndian |
abstract byte[] |
BaseCodec.decompress(RandomAccessInputStream in,
CodecOptions options) |
byte[] |
LosslessJPEGCodec.decompress(RandomAccessInputStream in,
CodecOptions options)
The CodecOptions parameter should have the following fields set:
interleaved
littleEndian |
byte[] |
LZOCodec.decompress(RandomAccessInputStream in,
CodecOptions options) |
byte[] |
NikonCodec.decompress(RandomAccessInputStream in,
CodecOptions options)
The CodecOptions parameter must be an instance of
NikonCodecOptions , and should have the following fields set:
lossy
vPredictor
curve
split
bitsPerSample
maxBytes
width
height |
byte[] |
LZWCodec.decompress(RandomAccessInputStream in,
CodecOptions options)
The CodecOptions parameter should have the following fields set:
maxBytes |
byte[] |
MSRLECodec.decompress(RandomAccessInputStream in,
CodecOptions options)
|
byte[] |
Base64Codec.decompress(RandomAccessInputStream in,
CodecOptions options) |
byte[] |
MJPBCodec.decompress(RandomAccessInputStream in,
CodecOptions options)
The CodecOptions parameter must be an instance of
MJPBCodecOptions ,
and should have the following fields set:
interlaced
width
height
bitsPerSample
littleEndian
interleaved |
byte[] |
JPEGCodec.decompress(RandomAccessInputStream in,
CodecOptions options)
The CodecOptions parameter should have the following fields set:
interleaved
littleEndian |
byte[] |
HuffmanCodec.decompress(RandomAccessInputStream in,
CodecOptions options)
The CodecOptions parameter must be an instance of
HuffmanCodecOptions , and should have the following fields set:
table
bitsPerSample
maxBytes |
byte[] |
QTRLECodec.decompress(RandomAccessInputStream in,
CodecOptions options) |
byte[] |
ZlibCodec.decompress(RandomAccessInputStream in,
CodecOptions options) |
byte[] |
PackbitsCodec.decompress(RandomAccessInputStream in,
CodecOptions options)
The CodecOptions parameter should have the following fields set:
maxBytes |
byte[] |
MSVideoCodec.decompress(RandomAccessInputStream in,
CodecOptions options)
The CodecOptions parameter should have the following fields set:
width
height
bitsPerSample
previousImage |
byte[] |
LuraWaveCodec.decompress(RandomAccessInputStream in,
CodecOptions options) |
byte[] |
PassthroughCodec.decompress(RandomAccessInputStream in,
CodecOptions options) |
byte[] |
RPZACodec.decompress(RandomAccessInputStream in,
CodecOptions options)
|
byte[] |
TargaRLECodec.decompress(RandomAccessInputStream in,
CodecOptions options)
The CodecOptions parameter should have the following fields set:
maxBytes
bitsPerSample |
byte[] |
Codec.decompress(RandomAccessInputStream in,
CodecOptions options)
Decompresses data from the given RandomAccessInputStream.
|
static JPEG2000CodecOptions |
JPEG2000CodecOptions.getDefaultOptions(CodecOptions options)
Return JPEG2000CodecOptions using the given CodecOptions as the default.
|
int |
HuffmanCodec.getSample(BitBuffer bb,
CodecOptions options) |
Constructor and Description |
---|
CodecOptions(CodecOptions options)
Construct a new CodecOptions using the given CodecOptions.
|
JPEG2000CodecOptions(CodecOptions options)
Creates a new instance with options.
|
Modifier and Type | Method and Description |
---|---|
CodecOptions |
TiffParser.getCodecOptions()
Retrieves the current set of codec options being used to decompress pixel
data.
|
CodecOptions |
TiffCompression.getCompressionCodecOptions(IFD ifd)
Creates a set of codec options for compression.
|
CodecOptions |
TiffCompression.getCompressionCodecOptions(IFD ifd,
CodecOptions opt)
Creates a set of codec options for compression.
|
Modifier and Type | Method and Description |
---|---|
byte[] |
TiffCompression.compress(byte[] input,
CodecOptions options)
Encodes a strip of data.
|
byte[] |
TiffCompression.decompress(byte[] input,
CodecOptions options)
Decodes a strip of data.
|
CodecOptions |
TiffCompression.getCompressionCodecOptions(IFD ifd,
CodecOptions opt)
Creates a set of codec options for compression.
|
void |
TiffParser.setCodecOptions(CodecOptions codecOptions)
Sets the codec options to be used when decompressing pixel data.
|
void |
TiffSaver.setCodecOptions(CodecOptions options)
Sets the codec options.
|
Copyright © 2014 Open Microscopy Environment