←Select platform

IccUint16ArrayTagType Class

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

This example method can be used in creating an "uInt16ArrayType" 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, "IccUint16ArrayTagType.icc"); 
 
public void IccUint16ArrayTagTypeExample() 
{ 
   // Load an ICC profile 
   string fileName = Path.Combine(LEAD_VARS.ImagesDir, "InputProfile.icc"); 
   IccProfileExtended iccProfile = new IccProfileExtended(fileName); 
 
   // Define the array of unsigned 16-bit integers 
   ushort[] data = new ushort[2] { 1, 6 }; 
 
   // Define the tag type 
   IccUint16ArrayTagType uInt16ArrayTagType = new IccUint16ArrayTagType(data); 
 
   // Add the new tag to the ICC profile 
   iccProfile.AddTag(uInt16ArrayTagType, 0x54616742, IccTagTypeBase.UInt16ArrayTypeSignature); 
 
   // 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.