Class PackedColorModel
- All Implemented Interfaces:
Transparency
- Direct Known Subclasses:
DirectColorModel
PackedColorModel class is an abstract
ColorModel class that works with pixel values which represent
color and alpha information as separate samples and which pack all
samples for a single pixel into a single int, short, or byte quantity.
This class can be used with an arbitrary ColorSpace. The number of
color samples in the pixel values must be the same as the number of color
components in the ColorSpace. There can be a single alpha
sample. The array length is always 1 for those methods that use a
primitive array pixel representation of type transferType.
The transfer types supported are DataBuffer.TYPE_BYTE,
DataBuffer.TYPE_USHORT, and DataBuffer.TYPE_INT.
Color and alpha samples are stored in the single element of the array
in bits indicated by bit masks. Each bit mask must be contiguous and
masks must not overlap. The same masks apply to the single int
pixel representation used by other methods. The correspondence of
masks and color/alpha samples is as follows:
- Masks are identified by indices running from 0 through
getNumComponents- 1. - The first
getNumColorComponentsindices refer to color samples. - If an alpha sample is present, it corresponds the last index.
- The order of the color indices is specified
by the
ColorSpace. Typically, this reflects the name of the color space type (for example, TYPE_RGB), index 0 corresponds to red, index 1 to green, and index 2 to blue.
The translation from pixel values to color/alpha components for
display or processing purposes is a one-to-one correspondence of
samples to components.
A PackedColorModel is typically used with image data
that uses masks to define packed samples. For example, a
PackedColorModel can be used in conjunction with a
SinglePixelPackedSampleModel to construct a
BufferedImage. Normally the masks used by the
SampleModel and the ColorModel would be the same.
However, if they are different, the color interpretation of pixel data is
done according to the masks of the ColorModel.
A single int pixel representation is valid for all objects
of this class since it is always possible to represent pixel values
used with this class in a single int. Therefore, methods
that use this representation do not throw an
IllegalArgumentException due to an invalid pixel value.
A subclass of PackedColorModel is DirectColorModel,
which is similar to an X11 TrueColor visual.
- See Also:
-
Field Summary
Fields declared in class ColorModel
pixel_bits, transferTypeModifier and TypeFieldDescriptionprotected intThe total number of bits in the pixel.protected intData type of the array used to represent pixel values.Fields declared in interface Transparency
BITMASK, OPAQUE, TRANSLUCENTModifier and TypeFieldDescriptionstatic final intRepresents image data that is guaranteed to be either completely opaque, with an alpha value of 1.0, or completely transparent, with an alpha value of 0.0.static final intRepresents image data that is guaranteed to be completely opaque, meaning that all pixels have an alpha value of 1.0.static final intRepresents image data that contains or might contain arbitrary alpha values between and including 0.0 and 1.0. -
Constructor Summary
ConstructorsConstructorDescriptionPackedColorModel(ColorSpace space, int bits, int[] colorMaskArray, int alphaMask, boolean isAlphaPremultiplied, int trans, int transferType) Constructs aPackedColorModelfrom a color mask array, which specifies which bits in anintpixel representation contain each of the color samples, and an alpha mask.PackedColorModel(ColorSpace space, int bits, int rmask, int gmask, int bmask, int amask, boolean isAlphaPremultiplied, int trans, int transferType) Constructs aPackedColorModelfrom the specified masks which indicate which bits in anintpixel representation contain the alpha, red, green and blue color samples. -
Method Summary
Modifier and TypeMethodDescriptioncreateCompatibleSampleModel(int w, int h) Creates aSampleModelwith the specified width and height that has a data layout compatible with thisColorModel.booleanTests if the specifiedObjectis an instance ofPackedColorModeland equals thisPackedColorModel.getAlphaRaster(WritableRaster raster) Returns aWritableRasterrepresenting the alpha channel of an image, extracted from the inputWritableRaster.final intgetMask(int index) Returns the mask indicating which bits in a pixel contain the specified color/alpha sample.final int[]getMasks()Returns a mask array indicating which bits in a pixel contain the color and alpha samples.inthashCode()Returns the hash code for this PackedColorModel.booleanChecks if the specifiedSampleModelis compatible with thisColorModel.Methods declared in class ColorModel
coerceData, createCompatibleWritableRaster, getAlpha, getAlpha, getBlue, getBlue, getColorSpace, getComponents, getComponents, getComponentSize, getComponentSize, getDataElement, getDataElement, getDataElements, getDataElements, getDataElements, getGreen, getGreen, getNormalizedComponents, getNormalizedComponents, getNumColorComponents, getNumComponents, getPixelSize, getRed, getRed, getRGB, getRGB, getRGBdefault, getTransferType, getTransparency, getUnnormalizedComponents, hasAlpha, isAlphaPremultiplied, isCompatibleRaster, toStringModifier and TypeMethodDescriptioncoerceData(WritableRaster raster, boolean isAlphaPremultiplied) Forces the raster data to match the state specified in theisAlphaPremultipliedvariable, assuming the data is currently correctly described by thisColorModel.createCompatibleWritableRaster(int w, int h) Creates aWritableRasterwith the specified width and height that has a data layout (SampleModel) compatible with thisColorModel.abstract intgetAlpha(int pixel) Returns the alpha component for the specified pixel, scaled from 0 to 255.intReturns the alpha component for the specified pixel, scaled from 0 to 255.abstract intgetBlue(int pixel) Returns the blue color component for the specified pixel, scaled from 0 to 255 in the default RGB ColorSpace, sRGB.intReturns the blue color component for the specified pixel, scaled from 0 to 255 in the default RGBColorSpace, sRGB.final ColorSpaceReturns theColorSpaceassociated with thisColorModel.int[]getComponents(int pixel, int[] components, int offset) Returns an array of unnormalized color/alpha components given a pixel in thisColorModel.int[]getComponents(Object pixel, int[] components, int offset) Returns an array of unnormalized color/alpha components given a pixel in thisColorModel.int[]Returns an array of the number of bits per color/alpha component.intgetComponentSize(int componentIdx) Returns the number of bits for the specified color/alpha component.intgetDataElement(float[] normComponents, int normOffset) Returns a pixel value represented as anintin thisColorModel, given an array of normalized color/alpha components.intgetDataElement(int[] components, int offset) Returns a pixel value represented as anintin thisColorModel, given an array of unnormalized color/alpha components.getDataElements(float[] normComponents, int normOffset, Object obj) Returns a data element array representation of a pixel in thisColorModel, given an array of normalized color/alpha components.getDataElements(int[] components, int offset, Object obj) Returns a data element array representation of a pixel in thisColorModel, given an array of unnormalized color/alpha components.getDataElements(int rgb, Object pixel) Returns a data element array representation of a pixel in thisColorModel, given an integer pixel representation in the default RGB color model.abstract intgetGreen(int pixel) Returns the green color component for the specified pixel, scaled from 0 to 255 in the default RGB ColorSpace, sRGB.intReturns the green color component for the specified pixel, scaled from 0 to 255 in the default RGBColorSpace, sRGB.float[]getNormalizedComponents(int[] components, int offset, float[] normComponents, int normOffset) Returns an array of all of the color/alpha components in normalized form, given an unnormalized component array.float[]getNormalizedComponents(Object pixel, float[] normComponents, int normOffset) Returns an array of all of the color/alpha components in normalized form, given a pixel in thisColorModel.intReturns the number of color components in thisColorModel.intReturns the number of components, including alpha, in thisColorModel.intReturns the number of bits per pixel described by thisColorModel.abstract intgetRed(int pixel) Returns the red color component for the specified pixel, scaled from 0 to 255 in the default RGB ColorSpace, sRGB.intReturns the red color component for the specified pixel, scaled from 0 to 255 in the default RGBColorSpace, sRGB.intgetRGB(int pixel) Returns the color/alpha components of the pixel in the default RGB color model format.intReturns the color/alpha components for the specified pixel in the default RGB color model format.static ColorModelReturns aDirectColorModelthat describes the default format for integer RGB values used in many of the methods in the AWT image interfaces for the convenience of the programmer.final intReturns the transfer type of thisColorModel.intReturns the transparency.int[]getUnnormalizedComponents(float[] normComponents, int normOffset, int[] components, int offset) Returns an array of all of the color/alpha components in unnormalized form, given a normalized component array.final booleanhasAlpha()Returns whether or not alpha is supported in thisColorModel.final booleanReturns whether or not the alpha has been premultiplied in the pixel values to be translated by thisColorModel.booleanisCompatibleRaster(Raster raster) Returnstrueifrasteris compatible with thisColorModelandfalseif it is not.toString()Returns theStringrepresentation of the contents of thisColorModelobject.Methods declared in class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
PackedColorModel
public PackedColorModel(ColorSpace space, int bits, int[] colorMaskArray, int alphaMask, boolean isAlphaPremultiplied, int trans, int transferType) Constructs aPackedColorModelfrom a color mask array, which specifies which bits in anintpixel representation contain each of the color samples, and an alpha mask. Color components are in the specifiedColorSpace. The length ofcolorMaskArrayshould be the number of components in theColorSpace. All of the bits in each mask must be contiguous and fit in the specified number of least significant bits of anintpixel representation. If thealphaMaskis 0, there is no alpha. If there is alpha, theboolean isAlphaPremultipliedspecifies how to interpret color and alpha samples in pixel values. If thebooleanistrue, color samples are assumed to have been multiplied by the alpha sample. The transparency,trans, specifies what alpha values can be represented by this color model. The transfer type is the type of primitive array used to represent pixel values.- Parameters:
space- the specifiedColorSpacebits- the number of bits in the pixel valuescolorMaskArray- array that specifies the masks representing the bits of the pixel values that represent the color componentsalphaMask- specifies the mask representing the bits of the pixel values that represent the alpha componentisAlphaPremultiplied-trueif color samples are premultiplied by the alpha sample;falseotherwisetrans- specifies the alpha value that can be represented by this color modeltransferType- the type of array used to represent pixel values- Throws:
IllegalArgumentException- ifbitsis less than 1 or greater than 32
-
PackedColorModel
public PackedColorModel(ColorSpace space, int bits, int rmask, int gmask, int bmask, int amask, boolean isAlphaPremultiplied, int trans, int transferType) Constructs aPackedColorModelfrom the specified masks which indicate which bits in anintpixel representation contain the alpha, red, green and blue color samples. Color components are in the specifiedColorSpace, which must be of type ColorSpace.TYPE_RGB. All of the bits in each mask must be contiguous and fit in the specified number of least significant bits of anintpixel representation. Ifamaskis 0, there is no alpha. If there is alpha, theboolean isAlphaPremultipliedspecifies how to interpret color and alpha samples in pixel values. If thebooleanistrue, color samples are assumed to have been multiplied by the alpha sample. The transparency,trans, specifies what alpha values can be represented by this color model. The transfer type is the type of primitive array used to represent pixel values.- Parameters:
space- the specifiedColorSpacebits- the number of bits in the pixel valuesrmask- specifies the mask representing the bits of the pixel values that represent the red color componentgmask- specifies the mask representing the bits of the pixel values that represent the green color componentbmask- specifies the mask representing the bits of the pixel values that represent the blue color componentamask- specifies the mask representing the bits of the pixel values that represent the alpha componentisAlphaPremultiplied-trueif color samples are premultiplied by the alpha sample;falseotherwisetrans- specifies the alpha value that can be represented by this color modeltransferType- the type of array used to represent pixel values- Throws:
IllegalArgumentException- ifspaceis not a TYPE_RGB space- See Also:
-
-
Method Details
-
getMask
public final int getMask(int index) Returns the mask indicating which bits in a pixel contain the specified color/alpha sample. For color samples,indexcorresponds to the placement of color sample names in the color space. Thus, anindexequal to 0 for a CMYK ColorSpace would correspond to Cyan and anindexequal to 1 would correspond to Magenta. If there is alpha, the alphaindexwould be:alphaIndex = numComponents() - 1;- Parameters:
index- the specified color or alpha sample- Returns:
- the mask, which indicates which bits of the
intpixel representation contain the color or alpha sample specified byindex. - Throws:
ArrayIndexOutOfBoundsException- ifindexis greater than the number of components minus 1 in thisPackedColorModelor ifindexis less than zero
-
getMasks
public final int[] getMasks()Returns a mask array indicating which bits in a pixel contain the color and alpha samples.- Returns:
- the mask array , which indicates which bits of the
intpixel representation contain the color or alpha samples.
-
createCompatibleSampleModel
Creates aSampleModelwith the specified width and height that has a data layout compatible with thisColorModel.- Overrides:
createCompatibleSampleModelin classColorModel- Parameters:
w- the width (in pixels) of the region of the image data describedh- the height (in pixels) of the region of the image data described- Returns:
- the newly created
SampleModel. - Throws:
IllegalArgumentException- ifworhis not greater than 0- See Also:
-
isCompatibleSampleModel
Checks if the specifiedSampleModelis compatible with thisColorModel. Ifsmisnull, this method returnsfalse.- Overrides:
isCompatibleSampleModelin classColorModel- Parameters:
sm- the specifiedSampleModel, ornull- Returns:
trueif the specifiedSampleModelis compatible with thisColorModel;falseotherwise.- See Also:
-
getAlphaRaster
Returns aWritableRasterrepresenting the alpha channel of an image, extracted from the inputWritableRaster. This method assumes thatWritableRasterobjects associated with thisColorModelstore the alpha band, if present, as the last band of image data. Returnsnullif there is no separate spatial alpha channel associated with thisColorModel. This method creates a newWritableRaster, but shares the data array.- Overrides:
getAlphaRasterin classColorModel- Parameters:
raster- aWritableRastercontaining an image- Returns:
- a
WritableRasterthat represents the alpha channel of the image contained inraster.
-
equals
Tests if the specifiedObjectis an instance ofPackedColorModeland equals thisPackedColorModel.- Overrides:
equalsin classColorModel- Parameters:
obj- theObjectto test for equality- Returns:
trueif the specifiedObjectis an instance ofPackedColorModeland equals thisPackedColorModel;falseotherwise.- See Also:
-
hashCode
public int hashCode()Returns the hash code for this PackedColorModel.- Overrides:
hashCodein classColorModel- Returns:
- a hash code for this PackedColorModel.
- See Also:
-