public struct IccChromaticity public value class IccChromaticity : public System.ValueType class IccChromaticity: using Leadtools;using Leadtools.ColorConversion;public void IccChromaticityTagTypeExample(){// load an Icc Profilestring fileName = Path.Combine(LEAD_VARS.ImagesDir, "test_IccProfileExtendedCS.icc");IccProfileExtended iccProfile = new IccProfileExtended(fileName);// define the three channelsIccChannelCoordinates[] iccChan = new IccChannelCoordinates[3];// define the first channel coordinatesint[] coord = new int[2];coord[0] = IccTools.FromDoubleTo2bFixed2bNumber(0.640);coord[1] = IccTools.FromDoubleTo2bFixed2bNumber(0.330);iccChan[0] = new IccChannelCoordinates(coord);// define the second channel coordinatescoord[0] = IccTools.FromDoubleTo2bFixed2bNumber(0.300);coord[1] = IccTools.FromDoubleTo2bFixed2bNumber(0.600);iccChan[1] = new IccChannelCoordinates(coord);// define the third channel coordinatescoord[0] = IccTools.FromDoubleTo2bFixed2bNumber(0.150);coord[1] = IccTools.FromDoubleTo2bFixed2bNumber(0.060);iccChan[2] = new IccChannelCoordinates(coord);// create the IccChomaticity classIccChromaticity iccChrom = new IccChromaticity(IccColorantsType.ITU_R_BT709, iccChan);// define the tag typeIccChromaticityTagType iccChromTagType = new IccChromaticityTagType(iccChrom);// add the new tag to the ICC ProfileiccProfile.AddTag(iccChromTagType, IccTag.ChromaticityTag, IccTagTypeBase.ChromaticityTypeSignature);// generate the new profile idiccProfile.GenerateProfileId();// update the icc array with the new changesiccProfile.UpdateDataArray();// write the Icc Profile into a new filestring IccfileName = Path.Combine(LEAD_VARS.ImagesDir, "IccChromaticityTagTypeCS.icc");iccProfile.GenerateIccFile(IccfileName);}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS22\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
