LEADTOOLS Color Conversion (Leadtools.ColorConversion assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
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.
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
)
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: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also