Lines Matching refs:color

50 /** Information how to interpret certain color data.<p>
53 interpret color data, by defining a describing color space, like
60 color representation. As this is overly verbose when used for
63 integers for color representation.<p>
67 /** Query type of this color space.<p>
74 /** Query the kind for each color component.<p>
78 in the final output color. This method returns a sequence of
79 tags, specifying for each component of a color value, to what
80 color attribute (if any) it corresponds. The values must be
84 corresponds to the number of color channels for this color
87 @example For the standard RGB color space, ComponentTags
93 /** Query rendering intent of this color space.<p>
100 /** Query various optional properties from the color space.<p>
102 If this color space has an ICC color profile, the sequence
103 contains an element named ICCProfile. Some color spaces also
113 /** Convert to color of another color space.<p>
115 @param deviceColor Sequence of device color components. Is
116 permitted to contain more than one device color element,
117 therefore, batch conversion of multiple color values is
121 target color space (e.g. <type>sequence<double></type> or
126 if the input sequence does not match the device color format
132 /** Convert color value in this color space to sRGB color values.<p>
138 @param deviceColor Sequence of device color components. Is
139 permitted to contain more than one device color element,
140 therefore, batch conversion of multiple color values is
143 @return the corresponding sequence of colors in the sRGB color
148 if the input sequence does not match the device color format.
155 /** Convert color value in this color space to sRGB color values, with linear alpha.<p>
157 If the given input color does not carry alpha information, an
160 @param deviceColor Sequence of device color components. Is
161 permitted to contain more than one device color element,
162 therefore, batch conversion of multiple color values is
165 @return the corresponding sequence of colors in the sRGB color
170 if the input sequence does not match the device color format.
175 /** Convert color value in this color space to premultiplied sRGB
176 color values, with linear alpha.<p>
178 If the given input color does not carry alpha information, an
180 individual RGB color values are premultiplied by the alpha
181 value (e.g. if alpha is 0.5, each color value has only half of
184 @param deviceColor Sequence of device color components. Is
185 permitted to contain more than one device color element,
186 therefore, batch conversion of multiple color values is
189 @return the corresponding sequence of colors in the sRGB color
194 if the input sequence does not match the device color format.
199 /** Convert sRGB color to a representation in this color space.<p>
201 If this color space conveys alpha information, it is assumed
202 be fully opaque for the given rgb color value.
204 @param deviceColor Sequence of sRGB color components. Is
205 permitted to contain more than one color element, therefore,
206 batch conversion of multiple color values is possible.
212 if the input sequence does not match the device color format.
217 /** Convert sRGB color with linear alpha into this color space.<p>
219 If this color space does not convey alpha information, the
222 @param rgbColor Sequence of sRGB color components. Is
223 permitted to contain more than one color element, therefore,
224 batch conversion of multiple color values is possible.
230 if the input sequence does not match the device color format.
235 /** Convert premultiplied sRGB color with linear alpha into this
236 color space.<p>
238 If this color space does not convey alpha information, the
241 @param rgbColor Sequence of sRGB color components. Is
242 permitted to contain more than one color element, therefore,
243 batch conversion of multiple color values is possible. The
244 individual color values are assumed to be premultiplied by the
251 if the input sequence does not match the device color format.