L_GetICCTagTypeSig

Summary

Gets the ICC tag type signature of the tag in the ICC profile that has the specified tag signature.

Syntax

#include "ltkrn.h"
#include "ltclr.h"

L_LTCLR_API L_UINT32 L_GetICCTagTypeSig(pICCProfile, uTagSig)

Parameters

pICCPROFILEEXT pICCProfile

Pointer to the ICCPROFILEEXT structure that contains the tag for which to get the type tag signature.

L_UINT32 uTagSig

A value that indicates the signature of the tag for which to get the tag type. Possible values include private tag signatures and the values listed in ICCTAGSIGNATURE.

Returns

Value Meaning
> 0 A value that indicates the signature of the tag type. This value must be one of the values listed in ICCTAGTYPESIGNATURE, or a private tag type signature.
< 1 An error occurred. Refer to Return Codes.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

This function returns the tag type signature of an ICC tag.

L_UINT32 GetICCTagTypeSigExample(pICCPROFILEEXT pICCProfile,L_UINT32 uTagSig)  
{ 
   L_INT nRet = L_GetICCTagTypeSig(pICCProfile, uTagSig); 
   if (nRet != 0) 
      return SUCCESS; 
 
   return nRet; 
} 

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

LEADTOOLS Color Conversion C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.