Data structure representing a color.
Copy Code
|
|
---|---|
typedef struct tagAT_PDF_COLORVALUE
{
BYTE space;
AT_PDF_FIXED value[4];
} AT_PDF_COLORVALUE;
typedef AT_PDF_COLORVALUE FAR* LPAT_PDF_COLORVALUE;
|
Name | Type | Description |
---|---|---|
space | BYTE |
The color space type. Can be one of the following:
|
value | AT_PDF_FIXED[4] |
The color value. The number of elements needed in the value field depends on the color space type (specified in the space field):
|