←Select platform

IptcSeparator Field

Summary
The separator when a file has two or more IPTC comments.
Syntax
C#
VB
Objective-C
C++
Java
public static readonly int IptcSeparator 
Public Shared ReadOnly IptcSeparator As Integer 
extern const NSInteger LTRasterCommentMetadataTypeIptcSeparator 
public static final int IPTC_SEPARATOR = DefineConstants.IPTC_SEPARATOR; 
public: 
static readonly int IptcSeparator 
Example
C#
VB
using Leadtools; 
using Leadtools.Codecs; 
 
 
public void CommentsSizeAndTypeExample() 
{ 
	Console.WriteLine("IptcSeparator : {0}", RasterCommentMetadata.IptcSeparator); 
 
	Console.WriteLine("Data type sizes:"); 
	Console.WriteLine("------------------"); 
	Array dataTypes = Enum.GetValues(typeof(RasterCommentMetadataDataType)); 
	foreach (RasterCommentMetadataDataType dataType in dataTypes) 
	{ 
		int size = RasterCommentMetadata.GetDataTypeSize(dataType); 
		Console.WriteLine("{0}: {1} bytes", dataType, size); 
	} 
 
	Console.WriteLine("Comment data types:"); 
	Console.WriteLine("------------------"); 
	Array types = Enum.GetValues(typeof(RasterCommentMetadataType)); 
	foreach (RasterCommentMetadataType type in types) 
	{ 
		RasterCommentMetadataDataType dataType = RasterCommentMetadata.GetDataType(type); 
		Console.WriteLine("{0}: {1}", type, dataType); 
	} 
} 
Imports Leadtools 
Imports Leadtools.Codecs 
 
Public Sub CommentsSizeAndTypeExample() 
   Console.WriteLine("IptcSeparator : {0}", RasterCommentMetadata.IptcSeparator) 
 
   Console.WriteLine("Data type sizes:") 
   Console.WriteLine("------------------") 
   Dim dataTypes As Array = System.Enum.GetValues(GetType(RasterCommentMetadataDataType)) 
   For Each dataType As RasterCommentMetadataDataType In dataTypes 
      Dim size As Integer = RasterCommentMetadata.GetDataTypeSize(dataType) 
      Console.WriteLine("{0}: {1} bytes", dataType, size) 
   Next dataType 
 
   Console.WriteLine("Comment data types:") 
   Console.WriteLine("------------------") 
   Dim types As Array = System.Enum.GetValues(GetType(RasterCommentMetadataType)) 
   For Each type As RasterCommentMetadataType In types 
      Dim dataType As RasterCommentMetadataDataType = RasterCommentMetadata.GetDataType(type) 
      Console.WriteLine("{0}: {1}", type, dataType) 
   Next type 
End Sub 
Remarks

IptcSeparator has an ASCII code of 1 and cannot appear in any comment, so there is not a possibility of confusion about this character is the separator or part of the comment. Do not confuse this with the character '1', whose Ascii code is 49!

For more information, refer to IPTC Comments.

Requirements

Target Platforms

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

Leadtools Assembly

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