1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XColorSpace.idl,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __com_sun_star_rendering_XColorSpace_idl__
31 #define __com_sun_star_rendering_XColorSpace_idl__
33 #ifndef __com_sun_star_uno_XInterface_idl__
34 #include
<com
/sun
/star
/uno
/XInterface.idl
>
36 #ifndef __com_sun_star_lang_IllegalArgumentException_idl__
37 #include
<com
/sun
/star
/lang
/IllegalArgumentException.idl
>
39 #ifndef __com_sun_star_beans_PropertyValue_idl__
40 #include
<com
/sun
/star
/beans
/PropertyValue.idl
>
42 #ifndef __com_sun_star_rendering_ColorProfile_idl__
43 #include
<com
/sun
/star
/rendering
/ColorProfile.idl
>
46 module com
{ module sun
{ module star
{ module rendering
{
48 /// Shorthand for the device-dependent color components, and easier to read
49 typedef double ColorComponent
;
50 typedef sequence
<ColorComponent
> Color
;
52 //=============================================================================
57 /// Red component. Valid range is [0,1.0]
59 /// Green component. Valid range is [0,1.0]
61 /// Blue component. Valid range is [0,1.0]
65 //=============================================================================
70 /** Alpha component.<p>
72 Valid range is [0,1.0], with 0.0 denoting fully transparent,
76 /// Red component. Valid range is [0,1.0]
78 /// Green component. Valid range is [0,1.0]
80 /// Blue component. Valid range is [0,1.0]
84 //=============================================================================
86 /** Information how to interpret certain color data.<p>
88 This interface encapsulates all information that is necessary to
89 interpret color data, by defining a describing color space, like
90 for example CMYK or sRGB. You can either convert between this and
91 an arbitrary other colorspace, or into the standard RGB or ARGB
92 formats (because those are so overwhelmingly common in computer
95 All canvas interfaces standardize to sequences of IEEE doubles for
96 color representation. As this is overly verbose when used for
97 bitmap data, derived interfaces exist,
98 e.g. <type>XIntegerBitmapColorSpace</type>, which use sequences of
99 integers for color representation.<p>
101 interface XColorSpace
103 /** Query type of this color space.<p>
105 @return a value from the <type>ColorSpaceType</type> constant
110 /** Query the kind for each color component.<p>
112 Color space components tend to correspond to physical
113 attributes like the amount of one specific colorant contained
114 in the final output color. This method returns a sequence of
115 tags, specifying for each component of a color value, to what
116 color attribute (if any) it corresponds. The values must be
117 one of the <type>ColorComponentTag</type> constants.<p>
119 At the same time, the number of elements in this sequence
120 corresponds to the number of color channels for this color
123 @example For the standard RGB color space, ComponentTags
124 consists of three elements, containing RGB_RED, RGB_GREEN and
125 RGB_BLUE tags, respectively
127 sequence
<byte> getComponentTags
();
129 /** Query rendering intent of this color space.<p>
131 @return a value from the <type>RenderingIntent</type> constant
134 byte getRenderingIntent
();
136 /** Query various optional properties from the color space.<p>
138 If this color space has an ICC color profile, the sequence
139 contains an element named ICCProfile. Some color spaces also
140 have properties Gamma, Whitepoint and Blackpoint. Background
141 information for these is available <a
142 href="http://en.wikipedia.org/wiki/Color_temperature">here</a>.
144 sequence
< ::com
::sun
::star
::beans
::PropertyValue
> getProperties
();
147 //=============================================================================
149 /** Convert to color of another color space.<p>
151 @param deviceColor Sequence of device color components. Is
152 permitted to contain more than one device color element,
153 therefore, batch conversion of multiple color values is
156 @return the corresponding sequence of device colors in the
157 target color space (e.g. <type>sequence<double></type> or
158 <type>sequence<byte></type>).
161 <type>com::sun::star::lang::IllegalArgumentException</type>,
162 if the input sequence does not match the device color format
163 (e.g. if the number of components is wrong)
165 sequence
<ColorComponent
> convertColorSpace
( [in] sequence
<ColorComponent
> deviceColor
, [in] XColorSpace targetColorSpace
)
166 raises
(com
::sun
::star
::lang
::IllegalArgumentException
);
168 /** Convert color value in this color space to sRGB color values.<p>
170 Any information not representable in the <type>RGBColor</type>
171 struct is discarded during the conversion. This includes alpha
174 @param deviceColor Sequence of device color components. Is
175 permitted to contain more than one device color element,
176 therefore, batch conversion of multiple color values is
179 @return the corresponding sequence of colors in the sRGB color
183 <type>com::sun::star::lang::IllegalArgumentException</type>,
184 if the input sequence does not match the device color format.
186 @see <member>convertToARGB</member>
188 sequence
<RGBColor
> convertToRGB
( [in] sequence
<ColorComponent
> deviceColor
)
189 raises
(com
::sun
::star
::lang
::IllegalArgumentException
);
191 /** Convert color value in this color space to sRGB color values, with linear alpha.<p>
193 If the given input color does not carry alpha information, an
194 alpha value of 1.0 (fully opaque) is assumed.
196 @param deviceColor Sequence of device color components. Is
197 permitted to contain more than one device color element,
198 therefore, batch conversion of multiple color values is
201 @return the corresponding sequence of colors in the sRGB color
205 <type>com::sun::star::lang::IllegalArgumentException</type>,
206 if the input sequence does not match the device color format.
208 sequence
<ARGBColor
> convertToARGB
( [in] sequence
<ColorComponent
> deviceColor
)
209 raises
(com
::sun
::star
::lang
::IllegalArgumentException
);
211 /** Convert color value in this color space to premultiplied sRGB
212 color values, with linear alpha.<p>
214 If the given input color does not carry alpha information, an
215 alpha value of 1.0 (fully opaque) is assumed. The resulting
216 individual RGB color values are premultiplied by the alpha
217 value (e.g. if alpha is 0.5, each color value has only half of
218 the original intensity).<p>
220 @param deviceColor Sequence of device color components. Is
221 permitted to contain more than one device color element,
222 therefore, batch conversion of multiple color values is
225 @return the corresponding sequence of colors in the sRGB color
229 <type>com::sun::star::lang::IllegalArgumentException</type>,
230 if the input sequence does not match the device color format.
232 sequence
<ARGBColor
> convertToPARGB
( [in] sequence
<ColorComponent
> deviceColor
)
233 raises
(com
::sun
::star
::lang
::IllegalArgumentException
);
235 /** Convert sRGB color to a representation in this color space.<p>
237 If this color space conveys alpha information, it is assumed
238 be fully opaque for the given rgb color value.
240 @param deviceColor Sequence of sRGB color components. Is
241 permitted to contain more than one color element, therefore,
242 batch conversion of multiple color values is possible.
244 @return the corresponding sequence of device colors.
247 <type>com::sun::star::lang::IllegalArgumentException</type>,
248 if the input sequence does not match the device color format.
250 sequence
<ColorComponent
> convertFromRGB
( [in] sequence
<RGBColor
> rgbColor
)
251 raises
(com
::sun
::star
::lang
::IllegalArgumentException
);
253 /** Convert sRGB color with linear alpha into this color space.<p>
255 If this color space does not convey alpha information, the
256 specified alpha value is silently ignored.
258 @param rgbColor Sequence of sRGB color components. Is
259 permitted to contain more than one color element, therefore,
260 batch conversion of multiple color values is possible.
262 @return the corresponding sequence of device colors.
265 <type>com::sun::star::lang::IllegalArgumentException</type>,
266 if the input sequence does not match the device color format.
268 sequence
<ColorComponent
> convertFromARGB
( [in] sequence
<ARGBColor
> rgbColor
)
269 raises
(com
::sun
::star
::lang
::IllegalArgumentException
);
271 /** Convert premultiplied sRGB color with linear alpha into this
274 If this color space does not convey alpha information, the
275 specified alpha value is silently ignored.
277 @param rgbColor Sequence of sRGB color components. Is
278 permitted to contain more than one color element, therefore,
279 batch conversion of multiple color values is possible. The
280 individual color values are assumed to be premultiplied by the
283 @return the corresponding sequence of device colors.
286 <type>com::sun::star::lang::IllegalArgumentException</type>,
287 if the input sequence does not match the device color format.
289 sequence
<ColorComponent
> convertFromPARGB
( [in] sequence
<ARGBColor
> rgbColor
)
290 raises
(com
::sun
::star
::lang
::IllegalArgumentException
);