←Select platform

IccChromaticityTagType Class

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

This example method can be used in creating an "chromaticityType" mentioned in the ICC.1:2004-10 specification. This method fills an IccChromaticity type with the colorant encoding ITU-R BT.709.

C#
using Leadtools; 
using Leadtools.ColorConversion; 
 
using Leadtools.Codecs; 
 
public string outputIccFile = Path.Combine(LEAD_VARS.ImagesDir, "IccChromaticityTagType.icc"); 
 
public void IccChromaticityTagTypeExample() 
{ 
   // Load an ICC profile 
   string fileName = Path.Combine(LEAD_VARS.ImagesDir, "InputProfile.icc"); 
   IccProfileExtended iccProfile = new IccProfileExtended(fileName); 
 
   // Define the three channels 
   IccChannelCoordinates[] iccChan = new IccChannelCoordinates[3]; 
 
   // First channel coordinates 
   int[] coord = new int[2]; 
   coord[0] = IccTools.FromDoubleTo2bFixed2bNumber(0.640); 
   coord[1] = IccTools.FromDoubleTo2bFixed2bNumber(0.330); 
   iccChan[0] = new IccChannelCoordinates(coord); 
 
   // Second channel coordinates 
   coord[0] = IccTools.FromDoubleTo2bFixed2bNumber(0.300); 
   coord[1] = IccTools.FromDoubleTo2bFixed2bNumber(0.600); 
   iccChan[1] = new IccChannelCoordinates(coord); 
 
   // Third channel coordinates 
   coord[0] = IccTools.FromDoubleTo2bFixed2bNumber(0.150); 
   coord[1] = IccTools.FromDoubleTo2bFixed2bNumber(0.060); 
   iccChan[2] = new IccChannelCoordinates(coord); 
 
   // Create the IccChomaticity class 
   IccChromaticity iccChrom = new IccChromaticity(IccColorantsType.ITU_R_BT709, iccChan); 
 
   // Define the tag type 
   IccChromaticityTagType iccChromTagType = new IccChromaticityTagType(iccChrom); 
 
   // Add the new tag to the ICC profile 
   iccProfile.AddTag(iccChromTagType, IccTag.ChromaticityTag, IccTagTypeBase.ChromaticityTypeSignature); 
 
   // 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(outputIccFile); 
} 
 
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.