←Select platform

IccUint32ArrayTagType Class

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

This example method can be used in creating an "uInt32ArrayType" 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, "IccUint32ArrayTagType.icc"); 
 
public void IccUint32ArrayTagTypeExample() 
{ 
   // Load an ICC profile 
   string fileName = Path.Combine(LEAD_VARS.ImagesDir, "InputProfile.icc"); 
   IccProfileExtended iccProfile = new IccProfileExtended(fileName); 
 
   // Define the array of unsigned 32-bit integers 
   int[] data = new int[2] { 3, 2 }; 
 
   // Define the tag type 
   IccUint32ArrayTagType uInt32ArrayTagType = new IccUint32ArrayTagType(data); 
 
   // Add the new tag to the ICC profile 
   iccProfile.AddTag(uInt32ArrayTagType, 0x54616743, IccTagTypeBase.UInt32ArrayTypeSignature); 
 
   // 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.