ICCPROFILEEXT

typedef struct _ICCPROFILEEXT 
{ 
   L_UINT uStructSize; 
   L_SIZE_T uDataSize; 
   L_SIZE_T uTagDataSize; 
   pICCHEADER pIccHeader; 
   ICCTAG_LIST tagList; 
   L_UCHAR * pTagData; 
   L_UCHAR * pData; 
} ICCPROFILEEXT, * pICCPROFILEEXT; 

The ICCPROFILEEXT structure is used to save all the information and data about an ICC profile.

Members

uStructSize

Size of the structure in bytes. Use the sizeof operator to calculate this value.

uDataSize

A value that indicates the size of the pData pointer in bytes.

uTagDataSize

A value that indicates the size of the pTagData pointer in bytes.

pIccHeader

A pointer to an ICCHEADER structure that has all the ICC header's data.

tagList

A pointer to an ICCTAG_LIST structure that contains information and data about all the tags in the ICC profile.

pTagData

A pointer to a buffer that contains all the tags' data.

pData

A pointer to a buffer that contains all the ICC profile's data.

Comments

The data in all the fields is converted into little Endian format, except for the data in the pTagData and the pData pointers. The user does not need to access the data in the pData and pTagData pointers directly. The ICC defined functions provide access to the data in them. Consequently, the data in these two members are kept in big Endian format.

When loading an existing ICC profile (one that has been saved to either an image file or an ICC profile file) into this structure, the pData member will contain all the profile data in one block of memory, and the pTagData member will contain only the tags data in one block of memory. The uDataSize member contains the size of the pData pointer which is the ICC profile's size, and the uTagDataSize member contains the size of the pTagData pointer.

When creating a new ICC profile, or modifying an existing one, the pTagData and uTagDataSize are constantly updated, so they will always contain the correct information for the profile. However, the pData and uDataSize will not contain the correct information until after the L_GenerateICCPointer function has been called. The L_GenerateICCPointer function generates the pData pointer to the updated profile information and fills in the uDataSize member with the updated value.

Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Color Conversion C API Help