←Select platform

IccChromaticity Structure

Summary
Contains CIE xy coordinate values of device channels to be used in the chromaticityType tag type.
Syntax
C#
C++/CLI
Python
public struct IccChromaticity 
public value class IccChromaticity : public System.ValueType  
class IccChromaticity: 
Example
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.