public struct IccChromaticity
public value class IccChromaticity : public System.ValueType
class IccChromaticity:
using Leadtools;
using Leadtools.ColorConversion;
using Leadtools.Codecs;
public string outputIccFile = Path.Combine(LEAD_VARS.ImagesDir, "ColorConversion", "GetIccProfileTag", "IccChromaticityTagType.icc");
public void IccChromaticityTagTypeExample()
{
// Load an ICC profile
string fileName = Path.Combine(LEAD_VARS.ImagesDir, "ColorConversion", "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";
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document