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 {@link #toCIEXYZ(float[]) toCIEXYZ} and{@link #fromCIEXYZ(float[]) fromCIEXYZ} for further information.
@param colorvalue a float array with length of at least the numberof components in this ColorSpace @return a float array of length 3 @throws ArrayIndexOutOfBoundsException if array length is notat least the number of components in this ColorSpace
|
|
|
|