| org.libtiff.jai.codec.XTIFFEncodeParam
XTIFFEncodeParam | public class XTIFFEncodeParam extends TIFFEncodeParam (Code) | | |
Constructor Summary | |
public | XTIFFEncodeParam(TIFFEncodeParam param) | public | XTIFFEncodeParam() Constructs an XTIFFEncodeParam object with default values for parameters. |
Method Summary | |
public int | getCompression() Specifies the type of compression to be used. | public XTIFFDirectory | getDirectory() | public boolean | getWriteTiled() If set, the data is in tiled format, instead of
in strips. | public void | initialize() Initializes an XTIFFEncodeParam with default values for parameters. | public void | setCompression(int compression) Specifies the type of compression to be used. | public void | setWriteTiled(boolean writeTiled) If set, the data will be written out in tiled format, instead of
in strips. |
XTIFFEncodeParam | public XTIFFEncodeParam(TIFFEncodeParam param)(Code) | | Promotes an XTIFFEncodeParam object from simpler one
|
XTIFFEncodeParam | public XTIFFEncodeParam()(Code) | | Constructs an XTIFFEncodeParam object with default values for parameters.
|
getCompression | public int getCompression()(Code) | | Specifies the type of compression to be used. The compression type
specified will be honored only if it is compatible with the image
being written out.
|
getWriteTiled | public boolean getWriteTiled()(Code) | | If set, the data is in tiled format, instead of
in strips.
|
initialize | public void initialize()(Code) | | Initializes an XTIFFEncodeParam with default values for parameters.
|
setCompression | public void setCompression(int compression)(Code) | | Specifies the type of compression to be used. The compression type
specified will be honored only if it is compatible with the image
being written out.
Parameters: compression - The compression type. |
setWriteTiled | public void setWriteTiled(boolean writeTiled)(Code) | | If set, the data will be written out in tiled format, instead of
in strips.
Parameters: writeTiled - Specifies whether the image data should be wriiten out in tiled format. |
|
|