Class ImageWriterParams
java.lang.Object
org.apache.xmlgraphics.image.writer.ImageWriterParams
Parameters for the encoder which is accessed through the
ImageWriter interface.
- Version:
- $Id$
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate Stringprivate Endiannessprivate Booleanprivate Floatstatic final intUsed for generating exactly one strip for each rowprivate ResolutionUnitprivate intstatic final intForces a single strip for the whole image.private Integerprivate Integer -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the endianness selected for the image.Returns the unit in which resolution values are given (ex.intThe number of rows per strip of the TIFF image, default 1.booleanbooleanChecks if image is single strip (required by some fax processors).voidsetCompressionMethod(String method) Set the compression method that shall be used to encode the image.voidsetEndianness(Endianness endianness) Sets the endianness selected for the image.voidsetJPEGQuality(float quality, boolean forceBaseline) Sets the quality setting for encoding JPEG images.voidsetResolution(int resolution) Sets the target resolution of the bitmap image to be written (sets both the horizontal and vertical resolution to the same value).voidsetResolutionUnit(ResolutionUnit resolutionUnit) Sets the resolution unit of the image for calculating resolution.voidsetRowsPerStrip(int rowsPerStrip) Sets the rows per strip (default is one row per strip); if set to -1 (single strip), will use height of the current page, required by some fax processors.voidsetSingleStrip(boolean isSingle) Convenience method to set rows per strip to single strip, otherwise sets to one row per strip.voidsetXResolution(int resolution) Sets the target horizontal resolution of the bitmap image to be written.voidsetYResolution(int resolution) Sets the target vertical resolution of the bitmap image to be written.
-
Field Details
-
SINGLE_STRIP
public static final int SINGLE_STRIPForces a single strip for the whole image.- See Also:
-
ONE_ROW_PER_STRIP
public static final int ONE_ROW_PER_STRIPUsed for generating exactly one strip for each row- See Also:
-
xResolution
-
yResolution
-
jpegQuality
-
jpegForceBaseline
-
compressionMethod
-
resolutionUnit
-
rowsPerStrip
private int rowsPerStrip -
endianness
-
-
Constructor Details
-
ImageWriterParams
public ImageWriterParams()Default constructor.
-
-
Method Details
-
hasResolution
public boolean hasResolution()- Returns:
- true if resolution has been set
-
getResolution
- Returns:
- the image resolution in dpi, or null if undefined
-
getJPEGQuality
- Returns:
- the quality value for encoding a JPEG image (0.0-1.0), or null if undefined
-
getJPEGForceBaseline
- Returns:
- true if the baseline quantization table is forced, or null if undefined.
-
getCompressionMethod
- Returns:
- the compression method for encoding the image
-
setResolution
public void setResolution(int resolution) Sets the target resolution of the bitmap image to be written (sets both the horizontal and vertical resolution to the same value).- Parameters:
resolution- the resolution
-
setJPEGQuality
public void setJPEGQuality(float quality, boolean forceBaseline) Sets the quality setting for encoding JPEG images.- Parameters:
quality- the quality setting (0.0-1.0)forceBaseline- force baseline quantization table
-
setCompressionMethod
Set the compression method that shall be used to encode the image.- Parameters:
method- the compression method
-
isSingleStrip
public boolean isSingleStrip()Checks if image is single strip (required by some fax processors).- Returns:
- true if one row per strip.
-
setSingleStrip
public void setSingleStrip(boolean isSingle) Convenience method to set rows per strip to single strip, otherwise sets to one row per strip.- Parameters:
isSingle- true if a single strip shall be produced, false if multiple strips are ok
-
setRowsPerStrip
public void setRowsPerStrip(int rowsPerStrip) Sets the rows per strip (default is one row per strip); if set to -1 (single strip), will use height of the current page, required by some fax processors.- Parameters:
rowsPerStrip- the value to set.
-
getRowsPerStrip
public int getRowsPerStrip()The number of rows per strip of the TIFF image, default 1. A value of -1 indicates a single strip per page will be used and RowsPerStrip will be set to image height for the associated page.- Returns:
- the number of rows per strip, default 1.
-
getResolutionUnit
Returns the unit in which resolution values are given (ex. units per inch).- Returns:
- the resolution unit.
-
setResolutionUnit
Sets the resolution unit of the image for calculating resolution.- Parameters:
resolutionUnit- the resolution unit (inches, centimeters etc.)
-
getXResolution
- Returns:
- the horizontal image resolution in the current resolution unit, or null if undefined
-
setXResolution
public void setXResolution(int resolution) Sets the target horizontal resolution of the bitmap image to be written.- Parameters:
resolution- the resolution value
-
getYResolution
- Returns:
- the vertical image resolution in the current resolution unit, or null if undefined
-
setYResolution
public void setYResolution(int resolution) Sets the target vertical resolution of the bitmap image to be written.- Parameters:
resolution- the resolution value
-
getEndianness
Returns the endianness selected for the image.- Returns:
- the endianness
-
setEndianness
Sets the endianness selected for the image.- Parameters:
endianness- the endianness
-