public struct IccColorantTableData public value class IccColorantTableData : public System.ValueType class IccColorantTableData: using Leadtools;using Leadtools.ColorConversion;using Leadtools.Codecs;public string outputIccFile = Path.Combine(LEAD_VARS.ImagesDir, "ColorConversion", "GetIccProfileTag", "IccColorantTableTagType.icc");public void IccColorantTableTagTypeExample(){// Load an ICC profilestring fileName = Path.Combine(LEAD_VARS.ImagesDir, "ColorConversion", "InputProfile.icc");IccProfileExtended iccProfile = new IccProfileExtended(fileName);// There are three colorants// First colorant name and valuestring colorantName1 = "Luminance";ushort[] pcsValues1 = new ushort[3] { 1, 0, 0 };// Second colorant name and valuestring colorantName2 = "A";ushort[] pcsValues2 = new ushort[3] { 0, 1, 0 };// Third colorant name and valuestring colorantName3 = "B";ushort[] pcsValues3 = new ushort[3] { 0, 0, 1 };// Define one color in the colorant tableIccColorantTableData[] iccColorantTable = new IccColorantTableData[3];// Create a new ColorantTable typeiccColorantTable[0] = new IccColorantTableData(Encoding.ASCII.GetBytes(colorantName1), pcsValues1);iccColorantTable[1] = new IccColorantTableData(Encoding.ASCII.GetBytes(colorantName2), pcsValues2);iccColorantTable[2] = new IccColorantTableData(Encoding.ASCII.GetBytes(colorantName3), pcsValues3);// Define the tag typeIccColorantTableTagType iccColorantTableTagType = new IccColorantTableTagType(iccColorantTable);// Add the new tag to the ICC profileiccProfile.AddTag(iccColorantTableTagType, IccTag.ColorantTableTag, IccTagTypeBase.ColorantTableTypeSignature);// Generate the new profile IDiccProfile.GenerateProfileId();// Update the ICC array with the new changesiccProfile.UpdateDataArray();// Write the ICC profile into a new fileiccProfile.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
