| java.lang.Object org.libtiff.jai.codec.XTIFFFactory org.geotiff.image.jai.GeoTIFFFactory
GeoTIFFFactory | public GeoTIFFFactory()(Code) | | Default constructor
|
createDirectory | public XTIFFDirectory createDirectory(SeekableStream stream, int directory) throws IOException(Code) | | Constructs a TIFFDirectoryFactory from a SeekableStream.
The directory parameter specifies which directory to read from
the linked list present in the stream; directory 0 is normally
read but it is possible to store multiple images in a single
TIFF file by maintaing multiple directories.
Parameters: stream - a SeekableStream to read from. Parameters: directory - the index of the directory to read. |
createDirectory | public XTIFFDirectory createDirectory(SeekableStream stream, long ifd_offset) throws IOException(Code) | | Constructs a TIFFDirectory by reading a SeekableStream.
The ifd_offset parameter specifies the stream offset from which
to begin reading; this mechanism is sometimes used to store
private IFDs within a TIFF file that are not part of the normal
sequence of IFDs.
Parameters: stream - a SeekableStream to read from. Parameters: ifd_offset - the long byte offset of the directory. |
createDirectory | public XTIFFDirectory createDirectory()(Code) | | Constructs an empty TIFFDirectory for writing
|
|
|