Important: The information in this document is obsolete and should not be used for new development.
L*u*v* Color Value
A color value expressed in the L*u*v* color space is composed ofL
,u
, andv
component values. Each color component is expressed as a numeric value within the range of 0 to 65535. For theL
component, this maps to 0 to 100 inclusive. For theu
andv
components, this maps to -128 to 127.996 inclusive. The color value is defined by theCMLuvColor
type definition.
struct CMLuvColor { unsigned shortL;/* L component of color in Luv color space */ unsigned shortu;/* u component of color in Luv color space */ unsigned shortv;/* v component of color in Luv color space */ };