ICC_NAMED_COLOR2

typedef struct _ICCNAMEDCOLOR2
{
    L_IccUInt32Number uVendorFlag;
    L_IccUInt32Number uNamedColorsCount;
    L_IccUInt32Number uDeviceCoordsCount;
    L_Icc7BitAscii pPrefix[32];
    L_Icc7BitAscii pSuffix[32];
    pICC_NAMED_COLOR2_DATA pNamedColors;
} ICC_NAMED_COLOR2, * pICC_NAMED_COLOR2;

The ICC_NAMED_COLOR2 structure is used to save named color 2 tag type data.

Member

Description

uVendorFlag

A value that indicates a vendor specific flag.

uNamedColorsCount

A value that indicates the number of named colors.

uDeviceCoordsCount

A value that indicates the number of device coordinates for each name color.

pPrefix

Pointer to a buffer that contains a prefix for each color name. This is a 32-byte field that includes null termination.

pSuffix

Pointer to a buffer that contains a suffix for each color name. This is a 32-byte field that includes null termination.

pNamedColors

Pointer to an ICC_NAMED_COLOR2_DATA structure that contains the named color©s data.