javax.imageio.plugins.bmp
public class: BMPImageWriteParam [javadoc |
source]
java.lang.Object
javax.imageio.IIOParam
javax.imageio.ImageWriteParam
javax.imageio.plugins.bmp.BMPImageWriteParam
A subclass of
ImageWriteParam for encoding images in
the BMP format.
This class allows for the specification of various parameters
while writing a BMP format image file. By default, the data layout
is bottom-up, such that the pixels are stored in bottom-up order,
the first scanline being stored last.
The particular compression scheme to be used can be specified by using
the setCompressionType() method with the appropriate type
string. The compression scheme specified will be honored if and only if it
is compatible with the type of image being written. If the specified
compression scheme is not compatible with the type of image being written
then the IOException will be thrown by the BMP image writer.
If the compression type is not set explicitly then getCompressionType()
will return null. In this case the BMP image writer will select
a compression type that supports encoding of the given image without loss
of the color resolution.
The compression type strings and the image type(s) each supports are
listed in the following
table:
Compression Types
| Type String | Description | Image Types |
| BI_RGB | Uncompressed RLE | <= 8-bits/sample |
| BI_RLE8 | 8-bit Run Length Encoding | <= 8-bits/sample |
| BI_RLE4 | 4-bit Run Length Encoding | <= 4-bits/sample |
| BI_BITFIELDS | Packed data | 16 or 32 bits/sample |
| Fields inherited from javax.imageio.ImageWriteParam: |
|---|
| MODE_DISABLED, MODE_DEFAULT, MODE_EXPLICIT, MODE_COPY_FROM_METADATA, canWriteTiles, tilingMode, preferredTileSizes, tilingSet, tileWidth, tileHeight, canOffsetTiles, tileGridXOffset, tileGridYOffset, canWriteProgressive, progressiveMode, canWriteCompressed, compressionMode, compressionTypes, compressionType, compressionQuality, locale |
| Constructor: |
public BMPImageWriteParam() {
this(null);
}
Constructs an BMPImageWriteParam object with default
values for all parameters and a null Locale. |
public BMPImageWriteParam(Locale locale) {
super(locale);
// Set compression types ("BI_RGB" denotes uncompressed).
compressionTypes = BMPConstants.compressionTypeNames;
// Set compression flag.
canWriteCompressed = true;
compressionMode = MODE_COPY_FROM_METADATA;
compressionType = compressionTypes[BMPConstants.BI_RGB];
}
Constructs a BMPImageWriteParam set to use a given
Locale and with default values for all parameters. Parameters:
locale - a Locale to be used to localize
compression type names and quality descriptions, or
null.
|
| Methods from javax.imageio.ImageWriteParam: |
|---|
|
canOffsetTiles, canWriteCompressed, canWriteProgressive, canWriteTiles, getBitRate, getCompressionMode, getCompressionQuality, getCompressionQualityDescriptions, getCompressionQualityValues, getCompressionType, getCompressionTypes, getLocale, getLocalizedCompressionTypeName, getPreferredTileSizes, getProgressiveMode, getTileGridXOffset, getTileGridYOffset, getTileHeight, getTileWidth, getTilingMode, isCompressionLossless, setCompressionMode, setCompressionQuality, setCompressionType, setProgressiveMode, setTiling, setTilingMode, unsetCompression, unsetTiling |
| Methods from javax.imageio.IIOParam: |
|---|
|
activateController, getController, getDefaultController, getDestinationOffset, getDestinationType, getSourceBands, getSourceRegion, getSourceXSubsampling, getSourceYSubsampling, getSubsamplingXOffset, getSubsamplingYOffset, hasController, setController, setDestinationOffset, setDestinationType, setSourceBands, setSourceRegion, setSourceSubsampling |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from javax.imageio.plugins.bmp.BMPImageWriteParam Detail: |
public boolean isTopDown() {
return topDown;
}
Returns the value of the topDown parameter.
The default is false. |
public void setTopDown(boolean topDown) {
this.topDown = topDown;
}
If set, the data will be written out in a top-down manner, the first
scanline being written first. |