Fill in one of the following members of this union then pass this data to PDE color space creation routine.
Declaration:
Copy Code |
|
|---|---|
typedef union tagAT_PDE_COLORDATA
{
AT_PDE_COLORDATA_CALGRAY *calGray;
AT_PDE_COLORDATA_CALRGB *calRGB;
AT_PDE_COLORDATA_LAB *lab;
AT_PDE_COLORDATA_ICCBASED *icc;
AT_PDE_COLORDATA_INDEXED *indexed;
HIG_PDE_COLORSPACE patternbase;
AT_PDE_COLORDATA_SEPARATION *sep;
AT_PDE_COLORDATA_DEVICEN *devn;
} AT_PDE_COLORDATA;
typedef AT_PDE_COLORDATA FAR* LPAT_PDE_COLORDATA;
|
|
Members:
| AT_PDE_COLORDATA_CALGRAY | *calGray | Pointer to a structure describing a CalGray color space. |
| AT_PDE_COLORDATA_CALRGB | *calRGB | Pointer to a structure describing a CalRGB color space. |
| AT_PDE_COLORDATA_LAB | *lab | Pointer to a structure describing a L*a*b* color space. |
| AT_PDE_COLORDATA_ICCBASED | *icc | Pointer to a structure describing an ICCBased color space. |
| AT_PDE_COLORDATA_INDEXED | *indexed | Pointer to a structure describing an Indexed color space. |
| HIG_PDE_COLORSPACE | patternbase | A handle to a Pattern color space. |
| AT_PDE_COLORDATA_SEPARATION | *sep | Pointer to a structure describing a Separation color space. |
| AT_PDE_COLORDATA_DEVICEN | *devn | Pointer to a structure describing a DeviceN color space. |
Remarks:
Please see section 7.10 of the PDF Reference Manual for information on color spaces.
