1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
|
/*
File: CGColorSpace.h
Contains: CoreGraphics color space
Version: QuickTime 7.3
Copyright: (c) 2007 (c) 2000-2001 by Apple Computer, Inc., all rights reserved.
Bugs?: For bug reports, consult the following page on
the World Wide Web:
http://developer.apple.com/bugreporter/
*/
#ifndef CGCOLORSPACE_H_
#define CGCOLORSPACE_H_
#ifndef __CGBASE__
#include <CGBase.h>
#endif
#ifndef __CGDATAPROVIDER__
#include <CGDataProvider.h>
#endif
#if PRAGMA_ONCE
#pragma once
#endif
#ifdef __cplusplus
extern "C" {
#endif
#if PRAGMA_IMPORT
#pragma import on
#endif
#if PRAGMA_ENUM_ALWAYSINT
#if defined(__fourbyteints__) && !__fourbyteints__
#define __CGCOLORSPACE__RESTORE_TWOBYTEINTS
#pragma fourbyteints on
#endif
#pragma enumsalwaysint on
#elif PRAGMA_ENUM_OPTIONS
#pragma option enum=int
#elif PRAGMA_ENUM_PACK
#if __option(pack_enums)
#define __CGCOLORSPACE__RESTORE_PACKED_ENUMS
#pragma options(!pack_enums)
#endif
#endif
typedef struct CGColorSpace* CGColorSpaceRef;
enum CGColorRenderingIntent {
kCGRenderingIntentDefault = 0,
kCGRenderingIntentAbsoluteColorimetric = 1,
kCGRenderingIntentRelativeColorimetric = 2,
kCGRenderingIntentPerceptual = 3,
kCGRenderingIntentSaturation = 4
};
typedef enum CGColorRenderingIntent CGColorRenderingIntent;
/** Device-dependent color spaces. **/
/* Create a DeviceGray colorspace. */
/*
* CGColorSpaceCreateDeviceGray()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( CGColorSpaceRef )
CGColorSpaceCreateDeviceGray(void);
/* Create a DeviceRGB colorspace. */
/*
* CGColorSpaceCreateDeviceRGB()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( CGColorSpaceRef )
CGColorSpaceCreateDeviceRGB(void);
/* Create a DeviceCMYK colorspace. */
/*
* CGColorSpaceCreateDeviceCMYK()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( CGColorSpaceRef )
CGColorSpaceCreateDeviceCMYK(void);
/** Device-independent color spaces. **/
/* Create a calibrated gray colorspace. `whitePoint' is an array of 3
* numbers specifying the tristimulus value, in the CIE 1931 XYZ-space, of
* the diffuse white point. `blackPoint' is an array of 3 numbers
* specifying the tristimulus value, in CIE 1931 XYZ-space, of the diffuse
* black point. `gamma' defines the gamma for the gray component. */
/*
* CGColorSpaceCreateCalibratedGray()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( CGColorSpaceRef )
CGColorSpaceCreateCalibratedGray(
const float whitePoint[3],
const float blackPoint[3],
float gamma);
/* Create a calibrated RGB colorspace. `whitePoint' is an array of 3
* numbers specifying the tristimulus value, in the CIE 1931 XYZ-space, of
* the diffuse white point. `blackPoint' is an array of 3 numbers
* specifying the tristimulus value, in CIE 1931 XYZ-space, of the diffuse
* black point. `gamma' is an array of 3 numbers specifying the gamma for
* the red, green, and blue components of the color space. `matrix' is an
* array of 9 numbers specifying the linear interpretation of the
* gamma-modified RGB values of the colorspace with respect to the final
* XYZ representation. */
/*
* CGColorSpaceCreateCalibratedRGB()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( CGColorSpaceRef )
CGColorSpaceCreateCalibratedRGB(
const float whitePoint[3],
const float blackPoint[3],
const float gamma[3],
const float matrix[9]);
/* Create an L*a*b* colorspace. `whitePoint' is an array of 3 numbers
* specifying the tristimulus value, in the CIE 1931 XYZ-space, of the
* diffuse white point. `blackPoint' is an array of 3 numbers specifying
* the tristimulus value, in CIE 1931 XYZ-space, of the diffuse black
* point. `range' is an array of four numbers specifying the range of valid
* values for the a* and b* components of the color space. */
/*
* CGColorSpaceCreateLab()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( CGColorSpaceRef )
CGColorSpaceCreateLab(
const float whitePoint[3],
const float blackPoint[3],
const float range[4]);
/* Create an ICC-based colorspace. `nComponents' specifies the number of
* color components in the color space defined by the ICC profile data.
* This must match the number of components actually in the ICC profile,
* and must be 1, 3, or 4. `range' is an array of 2*nComponents numbers
* specifying the minimum and maximum valid values of the corresponding
* color components, so that for color component k, range[2*k] <= c[k] <=
* range[2*k+1], where c[k] is the k'th color component. `profile' is a
* data provider specifying the ICC profile. `alternate' specifies an
* alternate colorspace to be used in case the ICC profile is not
* supported. It must have `nComponents' color components. If `alternate'
* is NULL, then the color space used will be DeviceGray, DeviceRGB, or
* DeviceCMYK, depending on whether `nComponents' is 1, 3, or 4,
* respectively. */
/*
* CGColorSpaceCreateICCBased()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( CGColorSpaceRef )
CGColorSpaceCreateICCBased(
size_t nComponents,
const float * range,
CGDataProviderRef profile,
CGColorSpaceRef alternateSpace);
/** Special colorspaces. **/
/* Create an indexed colorspace. A sample value in an indexed color space
* is treated as an index into the color table of the color space. `base'
* specifies the base color space in which the values in the color table
* are to be interpreted. `lastIndex' is an integer which specifies the
* maximum valid index value; it must be less than or equal to 255.
* `colorTable' is an array of m * (lastIndex + 1) bytes, where m is
* the number of color components in the base color space. Each byte
* is an unsigned integer in the range 0 to 255 that is scaled to the
* range of the corresponding color component in the base color space. */
/*
* CGColorSpaceCreateIndexed()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( CGColorSpaceRef )
CGColorSpaceCreateIndexed(
CGColorSpaceRef baseSpace,
size_t lastIndex,
const unsigned char * colorTable);
/* Create a pattern colorspace. `baseSpace' is the underlying colorspace of
* the pattern colorspace. For colored patterns, `baseSpace' should be
* NULL; for uncolored patterns, `baseSpace' specifies the colorspace of
* colors which will be painted through the pattern. */
/*
* CGColorSpaceCreatePattern()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: in version 10.1 and later
*/
EXTERN_API_C( CGColorSpaceRef )
CGColorSpaceCreatePattern(CGColorSpaceRef baseSpace);
/* Create a CGColorSpace using `platformColorSpaceReference', a pointer to
* a platform-specific color space reference. For MacOS X,
* `platformColorSpaceReference' should be a pointer to a CMProfileRef. */
/*
* CGColorSpaceCreateWithPlatformColorSpace()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: in version 10.1 and later
*/
EXTERN_API_C( CGColorSpaceRef )
CGColorSpaceCreateWithPlatformColorSpace(void * platformColorSpaceReference);
/** Colorspace information. **/
/* Return the number of color components supported by the colorspace `cs'. */
/*
* CGColorSpaceGetNumberOfComponents()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( size_t )
CGColorSpaceGetNumberOfComponents(CGColorSpaceRef cs);
/** Retaining & releasing colorspaces. **/
/* Increment the retain count of `cs' and return it. All colorspaces are
* created with an initial retain count of 1. */
/*
* CGColorSpaceRetain()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( CGColorSpaceRef )
CGColorSpaceRetain(CGColorSpaceRef cs);
/* Decrement the retain count of `cs'. If the retain count reaches 0, then
* release it and any associated resources. */
/*
* CGColorSpaceRelease()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void )
CGColorSpaceRelease(CGColorSpaceRef cs);
#if PRAGMA_ENUM_ALWAYSINT
#pragma enumsalwaysint reset
#ifdef __CGCOLORSPACE__RESTORE_TWOBYTEINTS
#pragma fourbyteints off
#endif
#elif PRAGMA_ENUM_OPTIONS
#pragma option enum=reset
#elif defined(__CGCOLORSPACE__RESTORE_PACKED_ENUMS)
#pragma options(pack_enums)
#endif
#ifdef PRAGMA_IMPORT_OFF
#pragma import off
#elif PRAGMA_IMPORT
#pragma import reset
#endif
#ifdef __cplusplus
}
#endif
#endif /* CGCOLORSPACE_H_ */
|