←Select platform

IccUint64ArrayTagType Class

Summary
Contains the uInt64ArrayType tag type data.
Syntax
C#
C++/CLI
Python
public class IccUint64ArrayTagType : IccTagTypeBase 
public ref class IccUint64ArrayTagType : public IccTagTypeBase  
class IccUint64ArrayTagType(IccTagTypeBase): 
Remarks
Example

This example method can be used in creating an "uInt64ArrayType" mentioned in the ICC.1:2004-10 specification.

C#
using Leadtools; 
using Leadtools.ColorConversion; 
 
using Leadtools.Codecs; 
 
public string outputIccProfile = Path.Combine(LEAD_VARS.ImagesDir, "IccUint64ArrayTagType.icc"); 
 
public void IccUint64ArrayTagTypeExample() 
{ 
   // Load an ICC profile 
   string fileName = Path.Combine(LEAD_VARS.ImagesDir, "InputProfile.icc"); 
   IccProfileExtended iccProfile = new IccProfileExtended(fileName); 
 
   // Define the array of unsigned 64-bit integers 
   Int64[] data = new Int64[2] { 6, 4 }; 
 
   // Define the tag type 
   IccUint64ArrayTagType uInt64ArrayTagType = new IccUint64ArrayTagType(data); 
 
   // Add the new tag to the ICC profile 
   iccProfile.AddTag(uInt64ArrayTagType, 0x54616744, IccTagTypeBase.UInt64ArrayTypeSignature); 
 
   // Generate the new profile ID 
   iccProfile.GenerateProfileId(); 
 
   // Update the ICC array with the new changes 
   iccProfile.UpdateDataArray(); 
 
   // Write the ICC profile into a new file 
   iccProfile.GenerateIccFile(outputIccProfile); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
} 
Requirements

Target Platforms

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

Leadtools.ColorConversion Assembly

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