IptcSeparator Field (original) (raw)

Summary

The separator when a file has two or more IPTC comments.

Syntax

C#

Objective-C

C++/CLI

Java

Python

public static readonly int IptcSeparator 
extern const NSInteger LTRasterCommentMetadataTypeIptcSeparator 
public static final int IPTC_SEPARATOR = 1; 

public: static readonly int IptcSeparator

Example

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); } }

Leadtools Assembly

Convert(byte[],int,int,int,int,RasterByteOrder,RasterByteOrder,RasterColor[],RasterColor[],int,int,int,RasterConvertBufferFlags) Method

Convert(byte[],int,int,int,int,RasterByteOrder,RasterByteOrder,RasterColor[],RasterColor[],RasterColor16[],RasterColor16[],int,int,int,RasterConvertBufferFlags) Method

Convert(IntPtr,int,int,int,RasterByteOrder,RasterByteOrder,RasterColor[],RasterColor[],int,int,int,RasterConvertBufferFlags) Method

Convert(IntPtr,int,int,int,RasterByteOrder,RasterByteOrder,RasterColor[],RasterColor[],RasterColor16[],RasterColor16[],int,int,int,RasterConvertBufferFlags) Method