Java Doc for ComponentColorModel.java in  » 6.0-JDK-Core » AWT » java » awt » image » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » AWT » java.awt.image 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.awt.image.ColorModel
      java.awt.image.ComponentColorModel

ComponentColorModel
public class ComponentColorModel extends ColorModel (Code)
A ColorModel class that works with pixel values that represent color and alpha information as separate samples and that store each sample in a separate data element. This class can be used with an arbitrary ColorSpace. The number of color samples in the pixel values must be same as the number of color components in the ColorSpace. There may be a single alpha sample.

For those methods that use a primitive array pixel representation of type transferType, the array length is the same as the number of color and alpha samples. Color samples are stored first in the array followed by the alpha sample, if present. The order of the color samples is specified by the ColorSpace. Typically, this order reflects the name of the color space type. For example, for TYPE_RGB, index 0 corresponds to red, index 1 to green, and index 2 to blue.

The translation from pixel sample values to color/alpha components for display or processing purposes is based on a one-to-one correspondence of samples to components. Depending on the transfer type used to create an instance of ComponentColorModel, the pixel sample values represented by that instance may be signed or unsigned and may be of integral type or float or double (see below for details). The translation from sample values to normalized color/alpha components must follow certain rules. For float and double samples, the translation is an identity, i.e. normalized component values are equal to the corresponding sample values. For integral samples, the translation should be only a simple scale and offset, where the scale and offset constants may be different for each component. The result of applying the scale and offset constants is a set of color/alpha component values, which are guaranteed to fall within a certain range. Typically, the range for a color component will be the range defined by the getMinValue and getMaxValue methods of the ColorSpace class. The range for an alpha component should be 0.0 to 1.0.

Instances of ComponentColorModel created with transfer types DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, and DataBuffer.TYPE_INT have pixel sample values which are treated as unsigned integral values. The number of bits in a color or alpha sample of a pixel value might not be the same as the number of bits for the corresponding color or alpha sample passed to the ComponentColorModel(ColorSpace, int[], boolean, boolean, int, int) constructor. In that case, this class assumes that the least significant n bits of a sample value hold the component value, where n is the number of significant bits for the component passed to the constructor. It also assumes that any higher-order bits in a sample value are zero. Thus, sample values range from 0 to 2n - 1. This class maps these sample values to normalized color component values such that 0 maps to the value obtained from the ColorSpace's getMinValue method for each component and 2n - 1 maps to the value obtained from getMaxValue. To create a ComponentColorModel with a different color sample mapping requires subclassing this class and overriding the getNormalizedComponents(Object, float[], int) method. The mapping for an alpha sample always maps 0 to 0.0 and 2n - 1 to 1.0.

For instances with unsigned sample values, the unnormalized color/alpha component representation is only supported if two conditions hold. First, sample value value 0 must map to normalized component value 0.0 and sample value 2n - 1 to 1.0. Second the min/max range of all color components of the ColorSpace must be 0.0 to 1.0. In this case, the component representation is the n least significant bits of the corresponding sample. Thus each component is an unsigned integral value between 0 and 2n - 1, where n is the number of significant bits for a particular component. If these conditions are not met, any method taking an unnormalized component argument will throw an IllegalArgumentException.

Instances of ComponentColorModel created with transfer types DataBuffer.TYPE_SHORT, DataBuffer.TYPE_FLOAT, and DataBuffer.TYPE_DOUBLE have pixel sample values which are treated as signed short, float, or double values. Such instances do not support the unnormalized color/alpha component representation, so any methods taking such a representation as an argument will throw an IllegalArgumentException when called on one of these instances. The normalized component values of instances of this class have a range which depends on the transfer type as follows: for float samples, the full range of the float data type; for double samples, the full range of the float data type (resulting from casting double to float); for short samples, from approximately -maxVal to +maxVal, where maxVal is the per component maximum value for the ColorSpace (-32767 maps to -maxVal, 0 maps to 0.0, and 32767 maps to +maxVal). A subclass may override the scaling for short sample values to normalized component values by overriding the getNormalizedComponents(Object, float[], int) method. For float and double samples, the normalized component values are taken to be equal to the corresponding sample values, and subclasses should not attempt to add any non-identity scaling for these transfer types.

Instances of ComponentColorModel created with transfer types DataBuffer.TYPE_SHORT, DataBuffer.TYPE_FLOAT, and DataBuffer.TYPE_DOUBLE use all the bits of all sample values. Thus all color/alpha components have 16 bits when using DataBuffer.TYPE_SHORT, 32 bits when using DataBuffer.TYPE_FLOAT, and 64 bits when using DataBuffer.TYPE_DOUBLE. When the ComponentColorModel(ColorSpace, int[], boolean, boolean, int, int) form of constructor is used with one of these transfer types, the bits array argument is ignored.

It is possible to have color/alpha sample values which cannot be reasonably interpreted as component values for rendering. This can happen when ComponentColorModel is subclassed to override the mapping of unsigned sample values to normalized color component values or when signed sample values outside a certain range are used. (As an example, specifying an alpha component as a signed short value outside the range 0 to 32767, normalized range 0.0 to 1.0, can lead to unexpected results.) It is the responsibility of applications to appropriately scale pixel data before rendering such that color components fall within the normalized range of the ColorSpace (obtained using the getMinValue and getMaxValue methods of the ColorSpace class) and the alpha component is between 0.0 and 1.0. If color or alpha component values fall outside these ranges, rendering results are indeterminate.

Methods that use a single int pixel representation throw an IllegalArgumentException, unless the number of components for the ComponentColorModel is one and the component value is unsigned -- in other words, a single color component using a transfer type of DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, or DataBuffer.TYPE_INT and no alpha.

A ComponentColorModel can be used in conjunction with a ComponentSampleModel, a BandedSampleModel, or a PixelInterleavedSampleModel to construct a BufferedImage.
See Also:   ColorModel
See Also:   ColorSpace
See Also:   ComponentSampleModel
See Also:   BandedSampleModel
See Also:   PixelInterleavedSampleModel
See Also:   BufferedImage
version:
   10 Feb 1997




Constructor Summary
public  ComponentColorModel(ColorSpace colorSpace, int[] bits, boolean hasAlpha, boolean isAlphaPremultiplied, int transparency, int transferType)
     Constructs a ComponentColorModel from the specified parameters.
public  ComponentColorModel(ColorSpace colorSpace, boolean hasAlpha, boolean isAlphaPremultiplied, int transparency, int transferType)
     Constructs a ComponentColorModel from the specified parameters.

Method Summary
public  ColorModelcoerceData(WritableRaster raster, boolean isAlphaPremultiplied)
     Forces the raster data to match the state specified in the isAlphaPremultiplied variable, assuming the data is currently correctly described by this ColorModel.
public  SampleModelcreateCompatibleSampleModel(int w, int h)
     Creates a SampleModel with the specified width and height, that has a data layout compatible with this ColorModel.
public  WritableRastercreateCompatibleWritableRaster(int w, int h)
     Creates a WritableRaster with the specified width and height, that has a data layout (SampleModel) compatible with this ColorModel.
public  booleanequals(Object obj)
     Compares this color model with another for equality.
public  intgetAlpha(int pixel)
     Returns the alpha component for the specified pixel, scaled from 0 to 255.
public  intgetAlpha(Object inData)
     Returns the alpha component for the specified pixel, scaled from 0 to 255.
public  WritableRastergetAlphaRaster(WritableRaster raster)
     Returns a Raster representing the alpha channel of an image, extracted from the input Raster. This method assumes that Raster objects associated with this ColorModel store the alpha band, if present, as the last band of image data.
public  intgetBlue(int pixel)
     Returns the blue color component for the specified pixel, scaled from 0 to 255 in the default RGB ColorSpace, sRGB.
public  intgetBlue(Object inData)
     Returns the blue color component for the specified pixel, scaled from 0 to 255 in the default RGB ColorSpace, sRGB.
public  int[]getComponents(int pixel, int[] components, int offset)
     Returns an array of unnormalized color/alpha components given a pixel in this ColorModel. An IllegalArgumentException is thrown if the component value for this ColorModel is not conveniently representable in the unnormalized form.
public  int[]getComponents(Object pixel, int[] components, int offset)
     Returns an array of unnormalized color/alpha components given a pixel in this ColorModel.
public  intgetDataElement(int[] components, int offset)
     Returns a pixel value represented as an int in this ColorModel, given an array of unnormalized color/alpha components.
public  intgetDataElement(float[] normComponents, int normOffset)
     Returns a pixel value represented as an int in this ColorModel, given an array of normalized color/alpha components.
public  ObjectgetDataElements(int rgb, Object pixel)
     Returns a data element array representation of a pixel in this ColorModel, given an integer pixel representation in the default RGB color model. This array can then be passed to the setDataElements method of a WritableRaster object.
public  ObjectgetDataElements(int[] components, int offset, Object obj)
     Returns a data element array representation of a pixel in this ColorModel, given an array of unnormalized color/alpha components.
public  ObjectgetDataElements(float[] normComponents, int normOffset, Object obj)
     Returns a data element array representation of a pixel in this ColorModel, given an array of normalized color/alpha components.
public  intgetGreen(int pixel)
     Returns the green color component for the specified pixel, scaled from 0 to 255 in the default RGB ColorSpace, sRGB.
public  intgetGreen(Object inData)
     Returns the green color component for the specified pixel, scaled from 0 to 255 in the default RGB ColorSpace, sRGB.
public  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.
public  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 this ColorModel.
public  intgetRGB(int pixel)
     Returns the color/alpha components of the pixel in the default RGB color model format.
public  intgetRGB(Object inData)
     Returns the color/alpha components for the specified pixel in the default RGB color model format.
public  intgetRed(int pixel)
     Returns the red color component for the specified pixel, scaled from 0 to 255 in the default RGB ColorSpace, sRGB.
public  intgetRed(Object inData)
     Returns the red color component for the specified pixel, scaled from 0 to 255 in the default RGB ColorSpace, sRGB.
public  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.
public  booleanisCompatibleRaster(Raster raster)
     Returns true if raster is compatible with this ColorModel; false if it is not.
Parameters:
  raster - The Raster object to test for compatibility.
public  booleanisCompatibleSampleModel(SampleModel sm)
     Checks whether or not the specified SampleModel is compatible with this ColorModel.
Parameters:
  sm - The SampleModel to test for compatibility.


Constructor Detail
ComponentColorModel
public ComponentColorModel(ColorSpace colorSpace, int[] bits, boolean hasAlpha, boolean isAlphaPremultiplied, int transparency, int transferType)(Code)
Constructs a ComponentColorModel from the specified parameters. Color components will be in the specified ColorSpace. The supported transfer types are DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, DataBuffer.TYPE_INT, DataBuffer.TYPE_SHORT, DataBuffer.TYPE_FLOAT, and DataBuffer.TYPE_DOUBLE. If not null, the bits array specifies the number of significant bits per color and alpha component and its length should be at least the number of components in the ColorSpace if there is no alpha information in the pixel values, or one more than this number if there is alpha information. When the transferType is DataBuffer.TYPE_SHORT, DataBuffer.TYPE_FLOAT, or DataBuffer.TYPE_DOUBLE the bits array argument is ignored. hasAlpha indicates whether alpha information is present. If hasAlpha is true, then the boolean isAlphaPremultiplied specifies how to interpret color and alpha samples in pixel values. If the boolean is true, color samples are assumed to have been multiplied by the alpha sample. The transparency specifies what alpha values can be represented by this color model. The acceptable transparency values are OPAQUE, BITMASK or TRANSLUCENT. The transferType is the type of primitive array used to represent pixel values.
Parameters:
  colorSpace - The ColorSpace associated with this color model.
Parameters:
  bits - The number of significant bits per component.May be null, in which case all bits of allcomponent samples will be significant.Ignored if transferType is one ofDataBuffer.TYPE_SHORT,DataBuffer.TYPE_FLOAT, orDataBuffer.TYPE_DOUBLE,in which case all bits of all componentsamples will be significant.
Parameters:
  hasAlpha - If true, this color model supports alpha.
Parameters:
  isAlphaPremultiplied - If true, alpha is premultiplied.
Parameters:
  transparency - Specifies what alpha values can be representedby this color model.
Parameters:
  transferType - Specifies the type of primitive array used torepresent pixel values.
throws:
  IllegalArgumentException - If the bits arrayargument is not null, its length is less than the number ofcolor and alpha components, and transferType is one ofDataBuffer.TYPE_BYTE,DataBuffer.TYPE_USHORT, orDataBuffer.TYPE_INT.
throws:
  IllegalArgumentException - If transferType is not one ofDataBuffer.TYPE_BYTE,DataBuffer.TYPE_USHORT,DataBuffer.TYPE_INT,DataBuffer.TYPE_SHORT,DataBuffer.TYPE_FLOAT, orDataBuffer.TYPE_DOUBLE.
See Also:   ColorSpace
See Also:   java.awt.Transparency



ComponentColorModel
public ComponentColorModel(ColorSpace colorSpace, boolean hasAlpha, boolean isAlphaPremultiplied, int transparency, int transferType)(Code)
Constructs a ComponentColorModel from the specified parameters. Color components will be in the specified ColorSpace. The supported transfer types are DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, DataBuffer.TYPE_INT, DataBuffer.TYPE_SHORT, DataBuffer.TYPE_FLOAT, and DataBuffer.TYPE_DOUBLE. The number of significant bits per color and alpha component will be 8, 16, 32, 16, 32, or 64, respectively. The number of color components will be the number of components in the ColorSpace. There will be an alpha component if hasAlpha is true. If hasAlpha is true, then the boolean isAlphaPremultiplied specifies how to interpret color and alpha samples in pixel values. If the boolean is true, color samples are assumed to have been multiplied by the alpha sample. The transparency specifies what alpha values can be represented by this color model. The acceptable transparency values are OPAQUE, BITMASK or TRANSLUCENT. The transferType is the type of primitive array used to represent pixel values.
Parameters:
  colorSpace - The ColorSpace associated with this color model.
Parameters:
  hasAlpha - If true, this color model supports alpha.
Parameters:
  isAlphaPremultiplied - If true, alpha is premultiplied.
Parameters:
  transparency - Specifies what alpha values can be representedby this color model.
Parameters:
  transferType - Specifies the type of primitive array used torepresent pixel values.
throws:
  IllegalArgumentException - If transferType is not one ofDataBuffer.TYPE_BYTE,DataBuffer.TYPE_USHORT,DataBuffer.TYPE_INT,DataBuffer.TYPE_SHORT,DataBuffer.TYPE_FLOAT, orDataBuffer.TYPE_DOUBLE.
See Also:   ColorSpace
See Also:   java.awt.Transparency
since:
   1.4




Method Detail
coerceData
public ColorModel coerceData(WritableRaster raster, boolean isAlphaPremultiplied)(Code)
Forces the raster data to match the state specified in the isAlphaPremultiplied variable, assuming the data is currently correctly described by this ColorModel. It may multiply or divide the color raster data by alpha, or do nothing if the data is in the correct state. If the data needs to be coerced, this method also returns an instance of this ColorModel with the isAlphaPremultiplied flag set appropriately. Since ColorModel can be subclassed, subclasses inherit the implementation of this method and if they don't override it then they throw an exception if they use an unsupported transferType.
throws:
  NullPointerException - if raster is null and data coercion is required.
throws:
  UnsupportedOperationException - if the transfer type of this ComponentColorModelis not one of the supported transfer types: DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, DataBuffer.TYPE_INT, DataBuffer.TYPE_SHORT,DataBuffer.TYPE_FLOAT, or DataBuffer.TYPE_DOUBLE.



createCompatibleSampleModel
public SampleModel createCompatibleSampleModel(int w, int h)(Code)
Creates a SampleModel with the specified width and height, that has a data layout compatible with this ColorModel.
Parameters:
  w - The width of the SampleModel you want to create.
Parameters:
  h - The height of the SampleModel you want to create. A SampleModel that is compatible with thisColorModel.
See Also:   SampleModel
See Also:   



createCompatibleWritableRaster
public WritableRaster createCompatibleWritableRaster(int w, int h)(Code)
Creates a WritableRaster with the specified width and height, that has a data layout (SampleModel) compatible with this ColorModel.
Parameters:
  w - The width of the WritableRaster you want to create.
Parameters:
  h - The height of the WritableRaster you want to create. A WritableRaster that is compatible with this ColorModel.
See Also:   WritableRaster
See Also:   SampleModel



equals
public boolean equals(Object obj)(Code)
Compares this color model with another for equality.
Parameters:
  obj - The object to compare with this color model. true if the color model objects are equal, false if they are not.



getAlpha
public int getAlpha(int pixel)(Code)
Returns the alpha component for the specified pixel, scaled from 0 to 255. The pixel value is specified as an int.
Parameters:
  pixel - The pixel from which you want to get the alpha component. The alpha component for the specified pixel, as an int.
throws:
  IllegalArgumentException - If there is more thanone component in this ColorModel.
throws:
  IllegalArgumentException - If the component value for thisColorModel is signed



getAlpha
public int getAlpha(Object inData)(Code)
Returns the alpha component for the specified pixel, scaled from 0 to 255. The pixel value is specified by an array of data elements of type transferType passed in as an object reference. Since ComponentColorModel can be subclassed, subclasses inherit the implementation of this method and if they don't override it then they throw an exception if they use an unsupported transferType.
Parameters:
  inData - The pixel from which you want to get the alpha component, specified by an array of data elements of type transferType. The alpha component for the specified pixel, as an int.
throws:
  ClassCastException - If inData is not a primitive array of type transferType.
throws:
  ArrayIndexOutOfBoundsException - if inData is not large enough to hold a pixel value for thisColorModel.
throws:
  UnsupportedOperationException - If the transfer type of this ComponentColorModelis not one of the supported transfer types: DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, DataBuffer.TYPE_INT, DataBuffer.TYPE_SHORT,DataBuffer.TYPE_FLOAT, or DataBuffer.TYPE_DOUBLE.



getAlphaRaster
public WritableRaster getAlphaRaster(WritableRaster raster)(Code)
Returns a Raster representing the alpha channel of an image, extracted from the input Raster. This method assumes that Raster objects associated with this ColorModel store the alpha band, if present, as the last band of image data. Returns null if there is no separate spatial alpha channel associated with this ColorModel. This method creates a new Raster, but will share the data array.
Parameters:
  raster - The WritableRaster from which to extract the alpha channel. A WritableRaster containing the image's alpha channel.



getBlue
public int getBlue(int pixel)(Code)
Returns the blue color component for the specified pixel, scaled from 0 to 255 in the default RGB ColorSpace, sRGB. A color conversion is done if necessary. The pixel value is specified as an int. The returned value will be a non pre-multiplied value. If the alpha is premultiplied, this method divides it out before returning the value (if the alpha value is 0, the blue value will be 0).
Parameters:
  pixel - The pixel from which you want to get the blue color component. The blue color component for the specified pixel, as an int.
throws:
  IllegalArgumentException - If there is more thanone component in this ColorModel.
throws:
  IllegalArgumentException - If the component value for thisColorModel is signed



getBlue
public int getBlue(Object inData)(Code)
Returns the blue color component for the specified pixel, scaled from 0 to 255 in the default RGB ColorSpace, sRGB. A color conversion is done if necessary. The pixel value is specified by an array of data elements of type transferType passed in as an object reference. The returned value is a non pre-multiplied value. If the alpha is premultiplied, this method divides it out before returning the value (if the alpha value is 0, the blue value will be 0). Since ComponentColorModel can be subclassed, subclasses inherit the implementation of this method and if they don't override it then they throw an exception if they use an unsupported transferType.
Parameters:
  inData - The pixel from which you want to get the blue color component, specified by an array of data elements of type transferType. The blue color component for the specified pixel, as an int.
throws:
  ClassCastException - If inData is not a primitive array of type transferType.
throws:
  ArrayIndexOutOfBoundsException - if inData is not large enough to hold a pixel value for thisColorModel.
throws:
  UnsupportedOperationException - If the transfer type of this ComponentColorModelis not one of the supported transfer types: DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, DataBuffer.TYPE_INT, DataBuffer.TYPE_SHORT,DataBuffer.TYPE_FLOAT, or DataBuffer.TYPE_DOUBLE.



getComponents
public int[] getComponents(int pixel, int[] components, int offset)(Code)
Returns an array of unnormalized color/alpha components given a pixel in this ColorModel. An IllegalArgumentException is thrown if the component value for this ColorModel is not conveniently representable in the unnormalized form. Color/alpha components are stored in the components array starting at offset (even if the array is allocated by this method).
Parameters:
  pixel - The pixel value specified as an integer.
Parameters:
  components - An integer array in which to store the unnormalized color/alpha components. If the components array is null,a new array is allocated.
Parameters:
  offset - An offset into the components array. The components array.
throws:
  IllegalArgumentException - If there is more than onecomponent in this ColorModel.
throws:
  IllegalArgumentException - If thisColorModel does not support the unnormalized form
throws:
  ArrayIndexOutOfBoundsException - If the components array is not null and is not large enough to hold all the color and alpha components (starting at offset).



getComponents
public int[] getComponents(Object pixel, int[] components, int offset)(Code)
Returns an array of unnormalized color/alpha components given a pixel in this ColorModel. The pixel value is specified by an array of data elements of type transferType passed in as an object reference. An IllegalArgumentException is thrown if the component values for this ColorModel are not conveniently representable in the unnormalized form. Color/alpha components are stored in the components array starting at offset (even if the array is allocated by this method). Since ComponentColorModel can be subclassed, subclasses inherit the implementation of this method and if they don't override it then this method might throw an exception if they use an unsupported transferType.
Parameters:
  pixel - A pixel value specified by an array of data elements oftype transferType.
Parameters:
  components - An integer array in which to store the unnormalized color/alpha components. If the components array is null, a new array is allocated.
Parameters:
  offset - An offset into the components array. The components array.
throws:
  IllegalArgumentException - If thisComponentColorModel does not support the unnormalized form
throws:
  UnsupportedOperationException - in some cases iff thetransfer type of this ComponentColorModelis not one of the following transfer types: DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, or DataBuffer.TYPE_INT.
throws:
  ClassCastException - If pixel is not a primitive array of type transferType.
throws:
  IllegalArgumentException - If the components array is not null and is not large enough to hold all the color and alpha components (starting at offset), or if pixel is not large enough to hold a pixel value for this ColorModel.



getDataElement
public int getDataElement(int[] components, int offset)(Code)
Returns a pixel value represented as an int in this ColorModel, given an array of unnormalized color/alpha components.
Parameters:
  components - An array of unnormalized color/alpha components.
Parameters:
  offset - An offset into the components array. A pixel value represented as an int.
throws:
  IllegalArgumentException - If there is more than one component in this ColorModel.
throws:
  IllegalArgumentException - If thisComponentColorModel does not support the unnormalized form



getDataElement
public int getDataElement(float[] normComponents, int normOffset)(Code)
Returns a pixel value represented as an int in this ColorModel, given an array of normalized color/alpha components. This method will throw an IllegalArgumentException if pixel values for this ColorModel are not conveniently representable as a single int. An ArrayIndexOutOfBoundsException is thrown if the normComponents array is not large enough to hold all the color and alpha components (starting at normOffset).
Parameters:
  normComponents - an array of normalized color and alphacomponents
Parameters:
  normOffset - the index into normComponents at which tobegin retrieving the color and alpha components an int pixel value in thisColorModel corresponding to the specified components.
throws:
  IllegalArgumentException - ifpixel values for this ColorModel are notconveniently representable as a single int
throws:
  ArrayIndexOutOfBoundsException - ifthe normComponents array is not large enough tohold all of the color and alpha components starting atnormOffset
since:
   1.4



getDataElements
public Object getDataElements(int rgb, Object pixel)(Code)
Returns a data element array representation of a pixel in this ColorModel, given an integer pixel representation in the default RGB color model. This array can then be passed to the setDataElements method of a WritableRaster object. If the pixel parameter is null, a new array is allocated. Since ComponentColorModel can be subclassed, subclasses inherit the implementation of this method and if they don't override it then they throw an exception if they use an unsupported transferType.
Parameters:
  rgb - the integer representation of the pixel in the RGBcolor model
Parameters:
  pixel - the specified pixel The data element array representation of a pixelin this ColorModel.
throws:
  ClassCastException - If pixel is not null and is not a primitive array of type transferType.
throws:
  ArrayIndexOutOfBoundsException - If pixel is not large enough to hold a pixel value for thisColorModel.
throws:
  UnsupportedOperationException - If the transfer type of this ComponentColorModelis not one of the supported transfer types: DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, DataBuffer.TYPE_INT, DataBuffer.TYPE_SHORT,DataBuffer.TYPE_FLOAT, or DataBuffer.TYPE_DOUBLE.
See Also:   WritableRaster.setDataElements
See Also:   SampleModel.setDataElements



getDataElements
public Object getDataElements(int[] components, int offset, Object obj)(Code)
Returns a data element array representation of a pixel in this ColorModel, given an array of unnormalized color/alpha components. This array can then be passed to the setDataElements method of a WritableRaster object.
Parameters:
  components - An array of unnormalized color/alpha components.
Parameters:
  offset - The integer offset into the components array.
Parameters:
  obj - The object in which to store the data element array representation of the pixel. If obj variable is null, a new array is allocated. If obj is not null, it must be a primitive array of type transferType. An ArrayIndexOutOfBoundsException is thrown if obj is not large enough to hold a pixel value for this ColorModel. SinceComponentColorModel can be subclassed, subclassesinherit the implementation of this method and if they don'toverride it then they throw an exception if they use an unsupported transferType. The data element array representation of a pixel in this ColorModel.
throws:
  IllegalArgumentException - If the components arrayis not large enough to hold all the color and alpha components(starting at offset).
throws:
  ClassCastException - If obj is not null and is not a primitive array of type transferType.
throws:
  ArrayIndexOutOfBoundsException - If obj is not largeenough to hold a pixel value for this ColorModel.
throws:
  IllegalArgumentException - If thisComponentColorModel does not support the unnormalized form
throws:
  UnsupportedOperationException - If the transfer type of this ComponentColorModelis not one of the following transfer types: DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, or DataBuffer.TYPE_INT.
See Also:   WritableRaster.setDataElements
See Also:   SampleModel.setDataElements



getDataElements
public Object getDataElements(float[] normComponents, int normOffset, Object obj)(Code)
Returns a data element array representation of a pixel in this ColorModel, given an array of normalized color/alpha components. This array can then be passed to the setDataElements method of a WritableRaster object. An ArrayIndexOutOfBoundsException is thrown if the normComponents array is not large enough to hold all the color and alpha components (starting at normOffset). If the obj variable is null, a new array will be allocated. If obj is not null, it must be a primitive array of type transferType; otherwise, a ClassCastException is thrown. An ArrayIndexOutOfBoundsException is thrown if obj is not large enough to hold a pixel value for this ColorModel.
Parameters:
  normComponents - an array of normalized color and alphacomponents
Parameters:
  normOffset - the index into normComponents at which tobegin retrieving color and alpha components
Parameters:
  obj - a primitive data array to hold the returned pixel an Object which is a primitive data arrayrepresentation of a pixel
throws:
  ClassCastException - if objis not a primitive array of type transferType
throws:
  ArrayIndexOutOfBoundsException - ifobj is not large enough to hold a pixel valuefor this ColorModel or the normComponentsarray is not large enough to hold all of the color and alphacomponents starting at normOffset
See Also:   WritableRaster.setDataElements
See Also:   SampleModel.setDataElements
since:
   1.4



getGreen
public int getGreen(int pixel)(Code)
Returns the green color component for the specified pixel, scaled from 0 to 255 in the default RGB ColorSpace, sRGB. A color conversion is done if necessary. The pixel value is specified as an int. The returned value will be a non pre-multiplied value. If the alpha is premultiplied, this method divides it out before returning the value (if the alpha value is 0, the green value will be 0).
Parameters:
  pixel - The pixel from which you want to get the green color component. The green color component for the specified pixel, as an int.
throws:
  IllegalArgumentException - If there is more thanone component in this ColorModel.
throws:
  IllegalArgumentException - If the component value for thisColorModel is signed



getGreen
public int getGreen(Object inData)(Code)
Returns the green color component for the specified pixel, scaled from 0 to 255 in the default RGB ColorSpace, sRGB. A color conversion is done if necessary. The pixel value is specified by an array of data elements of type transferType passed in as an object reference. The returned value is a non pre-multiplied value. If the alpha is premultiplied, this method divides it out before returning the value (if the alpha value is 0, the green value will be 0). Since ComponentColorModel can be subclassed, subclasses inherit the implementation of this method and if they don't override it then they throw an exception if they use an unsupported transferType.
Parameters:
  inData - The pixel from which you want to get the green color component, specified by an array of data elements of type transferType. The green color component for the specified pixel, as an int.
throws:
  ClassCastException - If inData is not a primitive array of type transferType.
throws:
  ArrayIndexOutOfBoundsException - if inData is not large enough to hold a pixel value for thisColorModel.
throws:
  UnsupportedOperationException - If the transfer type of this ComponentColorModelis not one of the supported transfer types: DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, DataBuffer.TYPE_INT, DataBuffer.TYPE_SHORT,DataBuffer.TYPE_FLOAT, or DataBuffer.TYPE_DOUBLE.



getNormalizedComponents
public float[] getNormalizedComponents(int[] components, int offset, float[] normComponents, int normOffset)(Code)
Returns an array of all of the color/alpha components in normalized form, given an unnormalized component array. Unnormalized components are unsigned integral values between 0 and 2n - 1, where n is the number of bits for a particular component. Normalized components are float values between a per component minimum and maximum specified by the ColorSpace object for this ColorModel. An IllegalArgumentException will be thrown if color component values for this ColorModel are not conveniently representable in the unnormalized form. If the normComponents array is null, a new array will be allocated. The normComponents array will be returned. Color/alpha components are stored in the normComponents array starting at normOffset (even if the array is allocated by this method). An ArrayIndexOutOfBoundsException is thrown if the normComponents array is not null and is not large enough to hold all the color and alpha components (starting at normOffset). An IllegalArgumentException is thrown if the components array is not large enough to hold all the color and alpha components starting at offset.
Parameters:
  components - an array containing unnormalized components
Parameters:
  offset - the offset into the components array atwhich to start retrieving unnormalized components
Parameters:
  normComponents - an array that receives the normalized components
Parameters:
  normOffset - the index into normComponents atwhich to begin storing normalized components an array containing normalized color and alphacomponents.
throws:
  IllegalArgumentException - If thisComponentColorModel does not support the unnormalized form



getNormalizedComponents
public float[] getNormalizedComponents(Object pixel, float[] normComponents, int normOffset)(Code)
Returns an array of all of the color/alpha components in normalized form, given a pixel in this ColorModel. The pixel value is specified by an array of data elements of type transferType passed in as an object reference. If pixel is not a primitive array of type transferType, a ClassCastException is thrown. An ArrayIndexOutOfBoundsException is thrown if pixel is not large enough to hold a pixel value for this ColorModel. Normalized components are float values between a per component minimum and maximum specified by the ColorSpace object for this ColorModel. If the normComponents array is null, a new array will be allocated. The normComponents array will be returned. Color/alpha components are stored in the normComponents array starting at normOffset (even if the array is allocated by this method). An ArrayIndexOutOfBoundsException is thrown if the normComponents array is not null and is not large enough to hold all the color and alpha components (starting at normOffset).

This method must be overrridden by a subclass if that subclass is designed to translate pixel sample values to color component values in a non-default way. The default translations implemented by this class is described in the class comments. Any subclass implementing a non-default translation must follow the constraints on allowable translations defined there.
Parameters:
  pixel - the specified pixel
Parameters:
  normComponents - an array to receive the normalized components
Parameters:
  normOffset - the offset into the normComponentsarray at which to start storing normalized components an array containing normalized color and alphacomponents.
throws:
  ClassCastException - if pixel is not a primitivearray of type transferType
throws:
  ArrayIndexOutOfBoundsException - ifnormComponents is not large enough to hold allcolor and alpha components starting at normOffset
throws:
  ArrayIndexOutOfBoundsException - ifpixel is not large enough to hold a pixelvalue for this ColorModel.
since:
   1.4




getRGB
public int getRGB(int pixel)(Code)
Returns the color/alpha components of the pixel in the default RGB color model format. A color conversion is done if necessary. The returned value will be in a non pre-multiplied format. If the alpha is premultiplied, this method divides it out of the color components (if the alpha value is 0, the color values will be 0).
Parameters:
  pixel - The pixel from which you want to get the color/alpha components. The color/alpha components for the specified pixel, as an int.
throws:
  IllegalArgumentException - If there is more thanone component in this ColorModel.
throws:
  IllegalArgumentException - If the component value for thisColorModel is signed



getRGB
public int getRGB(Object inData)(Code)
Returns the color/alpha components for the specified pixel in the default RGB color model format. A color conversion is done if necessary. The pixel value is specified by an array of data elements of type transferType passed in as an object reference. The returned value is in a non pre-multiplied format. If the alpha is premultiplied, this method divides it out of the color components (if the alpha value is 0, the color values will be 0). Since ComponentColorModel can be subclassed, subclasses inherit the implementation of this method and if they don't override it then they throw an exception if they use an unsupported transferType.
Parameters:
  inData - The pixel from which you want to get the color/alpha components, specified by an array of data elements of type transferType. The color/alpha components for the specified pixel, as an int.
throws:
  ClassCastException - If inData is not a primitive array of type transferType.
throws:
  ArrayIndexOutOfBoundsException - if inData is not large enough to hold a pixel value for thisColorModel.
throws:
  UnsupportedOperationException - If the transfer type of this ComponentColorModelis not one of the supported transfer types: DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, DataBuffer.TYPE_INT, DataBuffer.TYPE_SHORT,DataBuffer.TYPE_FLOAT, or DataBuffer.TYPE_DOUBLE.
See Also:   ColorModel.getRGBdefault



getRed
public int getRed(int pixel)(Code)
Returns the red color component for the specified pixel, scaled from 0 to 255 in the default RGB ColorSpace, sRGB. A color conversion is done if necessary. The pixel value is specified as an int. The returned value will be a non pre-multiplied value. If the alpha is premultiplied, this method divides it out before returning the value (if the alpha value is 0, the red value will be 0).
Parameters:
  pixel - The pixel from which you want to get the red color component. The red color component for the specified pixel, as an int.
throws:
  IllegalArgumentException - If there is more thanone component in this ColorModel.
throws:
  IllegalArgumentException - If the component value for thisColorModel is signed



getRed
public int getRed(Object inData)(Code)
Returns the red color component for the specified pixel, scaled from 0 to 255 in the default RGB ColorSpace, sRGB. A color conversion is done if necessary. The pixel value is specified by an array of data elements of type transferType passed in as an object reference. The returned value will be a non pre-multiplied value. If the alpha is premultiplied, this method divides it out before returning the value (if the alpha value is 0, the red value will be 0). Since ComponentColorModel can be subclassed, subclasses inherit the implementation of this method and if they don't override it then they throw an exception if they use an unsupported transferType.
Parameters:
  inData - The pixel from which you want to get the red color component, specified by an array of data elements of type transferType. The red color component for the specified pixel, as an int.
throws:
  ClassCastException - If inData is not a primitive array of type transferType.
throws:
  ArrayIndexOutOfBoundsException - if inData is not large enough to hold a pixel value for thisColorModel.
throws:
  UnsupportedOperationException - If the transfer type of this ComponentColorModelis not one of the supported transfer types: DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, DataBuffer.TYPE_INT, DataBuffer.TYPE_SHORT,DataBuffer.TYPE_FLOAT, or DataBuffer.TYPE_DOUBLE.



getUnnormalizedComponents
public int[] getUnnormalizedComponents(float[] normComponents, int normOffset, int[] components, int offset)(Code)
Returns an array of all of the color/alpha components in unnormalized form, given a normalized component array. Unnormalized components are unsigned integral values between 0 and 2n - 1, where n is the number of bits for a particular component. Normalized components are float values between a per component minimum and maximum specified by the ColorSpace object for this ColorModel. An IllegalArgumentException will be thrown if color component values for this ColorModel are not conveniently representable in the unnormalized form. If the components array is null, a new array will be allocated. The components array will be returned. Color/alpha components are stored in the components array starting at offset (even if the array is allocated by this method). An ArrayIndexOutOfBoundsException is thrown if the components array is not null and is not large enough to hold all the color and alpha components (starting at offset). An IllegalArgumentException is thrown if the normComponents array is not large enough to hold all the color and alpha components starting at normOffset.
Parameters:
  normComponents - an array containing normalized components
Parameters:
  normOffset - the offset into the normComponentsarray at which to start retrieving normalized components
Parameters:
  components - an array that receives the components fromnormComponents
Parameters:
  offset - the index into components at which tobegin storing normalized components fromnormComponents an array containing unnormalized color and alphacomponents.
throws:
  IllegalArgumentException - If thisComponentColorModel does not support the unnormalized form
throws:
  IllegalArgumentException - if the length ofnormComponents minus normOffsetis less than numComponents



isCompatibleRaster
public boolean isCompatibleRaster(Raster raster)(Code)
Returns true if raster is compatible with this ColorModel; false if it is not.
Parameters:
  raster - The Raster object to test for compatibility. true if raster is compatible with this ColorModel, false if it is not.



isCompatibleSampleModel
public boolean isCompatibleSampleModel(SampleModel sm)(Code)
Checks whether or not the specified SampleModel is compatible with this ColorModel.
Parameters:
  sm - The SampleModel to test for compatibility. true if the SampleModel is compatible with this ColorModel, false if it is not.
See Also:   SampleModel
See Also:   



Fields inherited from java.awt.image.ColorModel
ColorSpace colorSpace(Code)(Java Doc)
int colorSpaceType(Code)(Java Doc)
static Map g16Tos8Map(Code)(Java Doc)
static Map g8Tos8Map(Code)(Java Doc)
boolean isAlphaPremultiplied(Code)(Java Doc)
boolean is_sRGB(Code)(Java Doc)
static byte[] l16Tos8(Code)(Java Doc)
static byte[] l8Tos8(Code)(Java Doc)
static Map lg16Toog16Map(Code)(Java Doc)
static Map lg16Toog8Map(Code)(Java Doc)
int maxBits(Code)(Java Doc)
int nBits(Code)(Java Doc)
int numColorComponents(Code)(Java Doc)
int numComponents(Code)(Java Doc)
protected int pixel_bits(Code)(Java Doc)
static short[] s8Tol16(Code)(Java Doc)
static byte[] s8Tol8(Code)(Java Doc)
boolean supportsAlpha(Code)(Java Doc)
protected int transferType(Code)(Java Doc)
int transparency(Code)(Java Doc)

Methods inherited from java.awt.image.ColorModel
public ColorModel coerceData(WritableRaster raster, boolean isAlphaPremultiplied)(Code)(Java Doc)
public SampleModel createCompatibleSampleModel(int w, int h)(Code)(Java Doc)
public WritableRaster createCompatibleWritableRaster(int w, int h)(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
public void finalize()(Code)(Java Doc)
abstract public int getAlpha(int pixel)(Code)(Java Doc)
public int getAlpha(Object inData)(Code)(Java Doc)
public WritableRaster getAlphaRaster(WritableRaster raster)(Code)(Java Doc)
abstract public int getBlue(int pixel)(Code)(Java Doc)
public int getBlue(Object inData)(Code)(Java Doc)
final public ColorSpace getColorSpace()(Code)(Java Doc)
public int getComponentSize(int componentIdx)(Code)(Java Doc)
public int[] getComponentSize()(Code)(Java Doc)
public int[] getComponents(int pixel, int[] components, int offset)(Code)(Java Doc)
public int[] getComponents(Object pixel, int[] components, int offset)(Code)(Java Doc)
public int getDataElement(int[] components, int offset)(Code)(Java Doc)
public int getDataElement(float[] normComponents, int normOffset)(Code)(Java Doc)
public Object getDataElements(int rgb, Object pixel)(Code)(Java Doc)
public Object getDataElements(int[] components, int offset, Object obj)(Code)(Java Doc)
public Object getDataElements(float[] normComponents, int normOffset, Object obj)(Code)(Java Doc)
static int getDefaultTransferType(int pixel_bits)(Code)(Java Doc)
static byte[] getGray16TosRGB8LUT(ICC_ColorSpace grayCS)(Code)(Java Doc)
static byte[] getGray8TosRGB8LUT(ICC_ColorSpace grayCS)(Code)(Java Doc)
abstract public int getGreen(int pixel)(Code)(Java Doc)
public int getGreen(Object inData)(Code)(Java Doc)
static short[] getLinearGray16ToOtherGray16LUT(ICC_ColorSpace grayCS)(Code)(Java Doc)
static byte[] getLinearGray16ToOtherGray8LUT(ICC_ColorSpace grayCS)(Code)(Java Doc)
static byte[] getLinearRGB16TosRGB8LUT()(Code)(Java Doc)
static byte[] getLinearRGB8TosRGB8LUT()(Code)(Java Doc)
public float[] getNormalizedComponents(int[] components, int offset, float[] normComponents, int normOffset)(Code)(Java Doc)
public float[] getNormalizedComponents(Object pixel, float[] normComponents, int normOffset)(Code)(Java Doc)
public int getNumColorComponents()(Code)(Java Doc)
public int getNumComponents()(Code)(Java Doc)
public int getPixelSize()(Code)(Java Doc)
public int getRGB(int pixel)(Code)(Java Doc)
public int getRGB(Object inData)(Code)(Java Doc)
public static ColorModel getRGBdefault()(Code)(Java Doc)
abstract public int getRed(int pixel)(Code)(Java Doc)
public int getRed(Object inData)(Code)(Java Doc)
final public int getTransferType()(Code)(Java Doc)
public int getTransparency()(Code)(Java Doc)
public int[] getUnnormalizedComponents(float[] normComponents, int normOffset, int[] components, int offset)(Code)(Java Doc)
static short[] getsRGB8ToLinearRGB16LUT()(Code)(Java Doc)
static byte[] getsRGB8ToLinearRGB8LUT()(Code)(Java Doc)
final public boolean hasAlpha()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
final public boolean isAlphaPremultiplied()(Code)(Java Doc)
public boolean isCompatibleRaster(Raster raster)(Code)(Java Doc)
public boolean isCompatibleSampleModel(SampleModel sm)(Code)(Java Doc)
static boolean isLinearGRAYspace(ColorSpace cs)(Code)(Java Doc)
static boolean isLinearRGBspace(ColorSpace cs)(Code)(Java Doc)
static void loadLibraries()(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.