Package org.libtiff.jai.codec
Class XTIFFDecodeParam
- java.lang.Object
-
- com.sun.media.jai.codec.TIFFDecodeParam
-
- org.libtiff.jai.codec.XTIFFDecodeParam
-
- All Implemented Interfaces:
com.sun.media.jai.codec.ImageDecodeParam
,Serializable
,Cloneable
public class XTIFFDecodeParam extends com.sun.media.jai.codec.TIFFDecodeParam
An extension ofTIFFDecodeParam
for decoding images in the TIFF format. In addition to the inherited properties, this object also retains a reference to the parsed XTIFFDirectory that is constructed from the file. For encoding, an empty XTIFFDirectory is constructed, into which the user may provide any additional tags for controlling the contents of the data. For example, if the image is to be compressed, some additional tags may be needed to specify parameters for the particular compression scheme.- See Also:
XTIFFDirectory
,XTIFFDecodeParam
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected XTIFFDirectory
directory
-
Constructor Summary
Constructors Constructor Description XTIFFDecodeParam()
Constructs a default instance ofXTIFFDecodeParam
.XTIFFDecodeParam(com.sun.media.jai.codec.TIFFDecodeParam param)
Promotes an XTIFFEncodeParam object from simpler one
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description XTIFFDirectory
getDirectory()
returns the current XTIFFDirectoryvoid
setDirectory(XTIFFDirectory dir)
sets the current XTIFFDirectory
-
-
-
Field Detail
-
directory
protected XTIFFDirectory directory
-
-
Method Detail
-
getDirectory
public XTIFFDirectory getDirectory()
returns the current XTIFFDirectory
-
setDirectory
public void setDirectory(XTIFFDirectory dir)
sets the current XTIFFDirectory
-
-