getAlpha
public abstract int getAlpha(int pixel)
Extract alpha int sample from pixel value, scaled to [0, 255].
pixel
- pixel value that will be interpreted according to
the color model.
- alpha sample, scaled to range [0, 255].
getAlphaRaster
public WritableRaster getAlphaRaster(WritableRaster raster)
Subclasses must override this method if it is possible for the
color model to have an alpha channel.
- null, as per JDK 1.3 doc. Subclasses will only return
null if no alpha raster exists.
getBlue
public abstract int getBlue(int pixel)
Converts pixel value to sRGB and extract blue int sample
scaled to range [0, 255].
getComponents
public int[] getComponents(int pixel,
int[] components,
int offset)
Fills an array with the unnormalized component samples from a
pixel value. I.e. decompose the pixel, but not perform any
color conversion.
This method is typically overriden in subclasses to provide a
more efficient implementation.
pixel
- pixel value encoded according to the color model.
- arrays of unnormalized component samples of single
pixel. The scale and multiplication state of the samples are
according to the color model. Each component sample is stored
as a separate element in the array.
getComponents
public int[] getComponents(Object pixel,
int[] components,
int offset)
Fills an array with the unnormalized component samples from an
array of transferType containing a single pixel. I.e. decompose
the pixel, but not perform any color conversion.
This method is typically overriden in subclasses to provide a
more efficient implementation.
pixel
- an array of transferType containing a single pixel. The
pixel should be encoded in the natural way of the color model. If
this argument is not an array, as expected, a ClassCastException
will be thrown.components
- an array that will be filled with the color component
of the pixel. If this is null, a new array will be allocatedoffset
- index into the components array at which the result
will be stored
- arrays of unnormalized component samples of single
pixel. The scale and multiplication state of the samples are
according to the color model. Each component sample is stored
as a separate element in the array.
getDataElement
public int getDataElement(float[] components,
int offset)
Converts the normalized component samples from an array to a pixel
value. I.e. composes the pixel from component samples, but does not
perform any color conversion or scaling of the samples.
This method is typically overriden in subclasses to provide a
more efficient implementation. The method provided by this abstract
class converts the components to unnormalized form and returns
getDataElement(int[], int).
components
- Array of normalized component samples of single pixel.
The scale and multiplication state of the samples are according to the
color model. Each component sample is stored as a separate element in the
array.offset
- Position of the first value of the pixel in components.
- pixel value encoded according to the color model.
getDataElement
public int getDataElement(int[] components,
int offset)
Converts the unnormalized component samples from an array to a
pixel value. I.e. composes the pixel from component samples, but
does not perform any color conversion or scaling of the samples.
This method performs the inverse function of
getComponents(int pixel, int[] components,
int offset)
. I.e.
(pixel == cm.getDataElement(cm.getComponents(pixel, null,
0), 0))
.
This method is overriden in subclasses since this abstract class throws
UnsupportedOperationException().
components
- Array of unnormalized component samples of single
pixel. The scale and multiplication state of the samples are according
to the color model. Each component sample is stored as a separate element
in the array.offset
- Position of the first value of the pixel in components.
- pixel value encoded according to the color model.
getDataElements
public Object getDataElements(float[] components,
int offset,
Object obj)
Converts the normalized component samples from an array to an array of
TransferType values. I.e. composes the pixel from component samples, but
does not perform any color conversion or scaling of the samples.
If obj is null, a new array of TransferType is allocated and returned.
Otherwise the results are stored in obj and obj is returned. If obj is
not long enough, ArrayIndexOutOfBounds is thrown. If obj is not an array
of primitives, ClassCastException is thrown.
This method is typically overriden in subclasses to provide a
more efficient implementation. The method provided by this abstract
class converts the components to unnormalized form and returns
getDataElement(int[], int, Object).
components
- Array of normalized component samples of single pixel.
The scale and multiplication state of the samples are according to the
color model. Each component sample is stored as a separate element in the
array.offset
- Position of the first value of the pixel in components.obj
- Array of TransferType or null.
- pixel value encoded according to the color model.
getDataElements
public Object getDataElements(int rgb,
Object pixel)
Converts an sRGB pixel int value to an array containing a
single pixel of the color space of the color model.
This method performs the inverse function of
getRGB(Object inData)
.
Outline of conversion process:
- Convert rgb to normalized [0.0, 1.0] sRGB values.
- Convert to color space components using fromRGB in
ColorSpace.
- If color model has alpha and should be premultiplied,
multiply color space components with alpha value
- Scale the components to the correct number of bits.
- Arrange the components in the output array
rgb
- The color to be converted to dataElements. A pixel
in sRGB color space, encoded in default 0xAARRGGBB format,
assumed not alpha premultiplied.pixel
- to avoid needless creation of arrays, an array to
use to return the pixel can be given. If null, a suitable array
will be created.
- An array of transferType values representing the color,
in the color model format. The color model defines whether the
getGreen
public abstract int getGreen(int pixel)
Converts pixel value to sRGB and extract green int sample
scaled to range [0, 255].
getNormalizedComponents
public float[] getNormalizedComponents(int[] components,
int offset,
float[] normComponents,
int normOffset)
Convert unnormalized components to normalized components.
getNormalizedComponents
public float[] getNormalizedComponents(Object pixel,
float[] normComponents,
int normOffset)
Convert unnormalized components to normalized components.
getPixelSize
public int getPixelSize()
Get get number of bits wide used for the bit size of pixel values
getRGB
public int getRGB(int pixel)
Converts a pixel int value of the color space of the color
model to a sRGB pixel int value.
This method is typically overriden in subclasses to provide a
more efficient implementation.
pixel
- pixel value that will be interpreted according to
the color model.
- a pixel in sRGB color space, encoded in default
0xAARRGGBB format.
getRGB
public int getRGB(Object inData)
Converts a pixel in the given array of the color space of the
color model to an sRGB pixel int value.
This method performs the inverse function of
getDataElements(int rgb, Object pixel)
.
I.e.
(rgb == cm.getRGB(cm.getDataElements(rgb,
null)))
.
inData
- array of transferType containing a single pixel. The
pixel should be encoded in the natural way of the color model.
- a pixel in sRGB color space, encoded in default
0xAARRGGBB format.
getRGBdefault
public static ColorModel getRGBdefault()
Returns the default color model which in Sun's case is an instance
of DirectColorModel
.
getRed
public abstract int getRed(int pixel)
Converts pixel value to sRGB and extract red int sample scaled
to range [0, 255].
pixel
- pixel value that will be interpreted according to
the color model, (assumed alpha premultiplied if color model says
so.)
- red sample scaled to range [0, 255], from default color
space sRGB, alpha non-premultiplied.
getRed
public int getRed(Object inData)
Converts pixel in the given array to sRGB and extract blue int
sample scaled to range [0-255].
This method is typically overriden in subclasses to provide a
more efficient implementation.
inData
- array of transferType containing a single pixel. The
pixel should be encoded in the natural way of the color model.
getUnnormalizedComponents
public int[] getUnnormalizedComponents(float[] normComponents,
int normOffset,
int[] components,
int offset)
Convert normalized components to unnormalized components.
isCompatibleRaster
public boolean isCompatibleRaster(Raster raster)
Checks if the given raster has a compatible data-layout (SampleModel).
raster
- The Raster to test.
- true if raster is compatible.
ColorModel.java --
Copyright (C) 1999, 2000, 2002, 2003, 2004, 2006 Free Software Foundation
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version.