org.libtiff.jai.codec |
|
Java Source File Name | Type | Comment |
XTIFF.java | Class | XTIFF. |
XTIFFDecodeParam.java | Class | An extension of TIFFDecodeParam for decoding images in
the TIFF format. |
XTIFFDirectory.java | Class | XTIFFDirectory is an extensible TIFF directory object. |
XTIFFEncodeParam.java | Class | |
XTIFFFactory.java | Class | A class representing the factory for constructing a XTIFFDirectory,
and the corresponding XTIFFFields. |
XTIFFField.java | Class | XTIFFField is class representing a field in a TIFF 6.0 Image File Directory.
Unlike the JAI TIFFField class, this one is serializable,
assuming the underlying data object is. |
XTIFFTileCodec.java | Interface | The XTIFFTileCodec is the common interface used by all
registered implementations of TIFF data compression.
Unlike other file formats, TIFF has no fixed set of
data compressions schemes, but allows for new and
user-defined compression types.
To use a new codec with the XTIFFDirectory you must
do the following things:
- register XTIFF methods with JAI through the XTIFFDescriptor
- implement the methods below; it is recommended to
use the XTIFFTileCodecImpl class for this purpose, as
it reduces the problem to one of defining the actual
data compression and decompression algorithms.
|
XTIFFTileCodecImpl.java | Class | Provides a base class for writing TIFF tile codecs, to
be registered with the XTIFFDirectory. |