|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.awt.color.ColorSpace
com.moneydance.awt.HSLColorSpace
public class HSLColorSpace
Convert RGB color to Hue, Saturation, Luminance. Adapted from C++ code for CColor obtained from CColor - RGB and HLS combined in one class by Christian Rodemeyer at http://codeproject.com/bitmap/ccolor.asp. This class extends ColorSpace for use within the Java color API.
Field Summary | |
---|---|
static int |
HUE_INDEX
The index in a return array of values for the entry containing the hue value. |
static int |
LUMINANCE_INDEX
The index in a return array of values for the entry containing the luminance value. |
static int |
SATURATION_INDEX
The index in a return array of values for the entry containing the saturation value. |
Fields inherited from class java.awt.color.ColorSpace |
---|
CS_CIEXYZ, CS_GRAY, CS_LINEAR_RGB, CS_PYCC, CS_sRGB, TYPE_2CLR, TYPE_3CLR, TYPE_4CLR, TYPE_5CLR, TYPE_6CLR, TYPE_7CLR, TYPE_8CLR, TYPE_9CLR, TYPE_ACLR, TYPE_BCLR, TYPE_CCLR, TYPE_CMY, TYPE_CMYK, TYPE_DCLR, TYPE_ECLR, TYPE_FCLR, TYPE_GRAY, TYPE_HLS, TYPE_HSV, TYPE_Lab, TYPE_Luv, TYPE_RGB, TYPE_XYZ, TYPE_YCbCr, TYPE_Yxy |
Constructor Summary | |
---|---|
HSLColorSpace()
Default constructor. |
Method Summary | |
---|---|
float[] |
fromCIEXYZ(float[] colorvalue)
Transforms a color value assumed to be in the CS_CIEXYZ conversion color space into this ColorSpace. |
float[] |
fromRGB(float[] rgbvalue)
Transforms a color value assumed to be in the default CS_sRGB color space into this ColorSpace. |
float |
getMaxValue(int component)
Returns the maximum normalized color component value for the specified component. |
float |
getMinValue(int component)
Returns the minimum normalized color component value for the specified component. |
float[] |
toCIEXYZ(float[] colorvalue)
Transforms a color value assumed to be in this ColorSpace into the CS_CIEXYZ conversion color space. |
float[] |
toRGB(float[] colorvalue)
Transforms a color value assumed to be in this ColorSpace into a value in the default CS_sRGB color space. |
Methods inherited from class java.awt.color.ColorSpace |
---|
getInstance, getName, getNumComponents, getType, isCS_sRGB |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int HUE_INDEX
public static final int SATURATION_INDEX
public static final int LUMINANCE_INDEX
Constructor Detail |
---|
public HSLColorSpace()
Method Detail |
---|
public float[] toRGB(float[] colorvalue)
This method transforms color values using algorithms designed
to produce the best perceptual match between input and output
colors. In order to do colorimetric conversion of color values,
you should use the toCIEXYZ
method of this color space to first convert from the input
color space to the CS_CIEXYZ color space, and then use the
fromCIEXYZ
method of the CS_sRGB color space to
convert from CS_CIEXYZ to the output color space.
See toCIEXYZ
and
fromCIEXYZ
for further information.
toRGB
in class java.awt.color.ColorSpace
colorvalue
- a float array with length of at least the number
of components in this ColorSpace
java.lang.ArrayIndexOutOfBoundsException
- if array length is not
at least the number of components in this ColorSpacepublic float[] fromRGB(float[] rgbvalue)
This method transforms color values using algorithms designed
to produce the best perceptual match between input and output
colors. In order to do colorimetric conversion of color values,
you should use the toCIEXYZ
method of the CS_sRGB color space to first convert from the input
color space to the CS_CIEXYZ color space, and then use the
fromCIEXYZ
method of this color space to
convert from CS_CIEXYZ to the output color space.
See toCIEXYZ
and
fromCIEXYZ
for further information.
fromRGB
in class java.awt.color.ColorSpace
rgbvalue
- a float array with length of at least 3
java.lang.ArrayIndexOutOfBoundsException
- if array length is not
at least 3public float[] toCIEXYZ(float[] colorvalue)
This method transforms color values using relative colorimetry,
as defined by the International Color Consortium standard. This
means that the XYZ values returned by this method are represented
relative to the D50 white point of the CS_CIEXYZ color space.
This representation is useful in a two-step color conversion
process in which colors are transformed from an input color
space to CS_CIEXYZ and then to an output color space. This
representation is not the same as the XYZ values that would
be measured from the given color value by a colorimeter.
A further transformation is necessary to compute the XYZ values
that would be measured using current CIE recommended practices.
See the toCIEXYZ
method of
ICC_ColorSpace
for further information.
toCIEXYZ
in class java.awt.color.ColorSpace
colorvalue
- a float array with length of at least the number
of components in this ColorSpace
java.lang.ArrayIndexOutOfBoundsException
- if array length is not
at least the number of components in this ColorSpace.public float[] fromCIEXYZ(float[] colorvalue)
This method transforms color values using relative colorimetry,
as defined by the International Color Consortium standard. This
means that the XYZ argument values taken by this method are represented
relative to the D50 white point of the CS_CIEXYZ color space.
This representation is useful in a two-step color conversion
process in which colors are transformed from an input color
space to CS_CIEXYZ and then to an output color space. The color
values returned by this method are not those that would produce
the XYZ value passed to the method when measured by a colorimeter.
If you have XYZ values corresponding to measurements made using
current CIE recommended practices, they must be converted to D50
relative values before being passed to this method.
See the fromCIEXYZ
method of
ICC_ColorSpace
for further information.
fromCIEXYZ
in class java.awt.color.ColorSpace
colorvalue
- a float array with length of at least 3
java.lang.ArrayIndexOutOfBoundsException
- if array length is not
at least 3public float getMinValue(int component)
getMinValue
in class java.awt.color.ColorSpace
component
- the component index
java.lang.IllegalArgumentException
- if component is less than 0 or
greater than numComponents - 1public float getMaxValue(int component)
getMaxValue
in class java.awt.color.ColorSpace
component
- the component index
java.lang.IllegalArgumentException
- if component is less than 0 or
greater than numComponents - 1
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |