Leadtools.ColorConversion Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.5.7
CreateTagType Method
See Also 
Leadtools.ColorConversion Namespace > IccTools Class : CreateTagType Method




sourceTagData
Icc class object that contains the tag data.
tagTypeSignature
Tag type signature of the tag type that needs to be created.
Creates an ICC tag type data.

Syntax

Visual Basic (Declaration) 
Public Shared Function CreateTagType( _
   ByVal sourceTagData As IccTagTypeBase, _
   ByVal tagTypeSignature As Integer _
) As IccTagTypeBase
Visual Basic (Usage)Copy Code
Dim sourceTagData As IccTagTypeBase
Dim tagTypeSignature As Integer
Dim value As IccTagTypeBase
 
value = IccTools.CreateTagType(sourceTagData, tagTypeSignature)
C# 
public static IccTagTypeBase CreateTagType( 
   IccTagTypeBase sourceTagData,
   int tagTypeSignature
)
Managed Extensions for C++ 
public: static IccTagTypeBase* CreateTagType( 
   IccTagTypeBase* sourceTagData,
   int tagTypeSignature
) 
C++/CLI 
public:
static IccTagTypeBase^ CreateTagType( 
   IccTagTypeBase^ sourceTagData,
   int tagTypeSignature
) 

Parameters

sourceTagData
Icc class object that contains the tag data.
tagTypeSignature
Tag type signature of the tag type that needs to be created.

Return Value

Icc class object that contains the resulted tag.

Example

For an additional example, refer to IccProfileSequenceDescriptionTagType.

Remarks

This method converts the sourceTagData into Big Endian format, and returns a ready tag type that can be used as part of other tag type. For the purposes of ICC v4.2 tag types, this method is only used with the IccProfileSequenceDescriptionTagType class.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also