public class IccColorantOrderTagType : IccTagTypeBase Public Class IccColorantOrderTagTypeInherits IccTagTypeBase
public ref class IccColorantOrderTagType : public IccTagTypeBase This example method can be used in creating an "colorantOrderType" mentioned in the ICC.1:2004-10 specification.
using Leadtools;using Leadtools.ColorConversion;public void IccColorantOrderTagTypeExample(){// load an Icc Profilestring fileName = Path.Combine(LEAD_VARS.ImagesDir, "EmptyIcc.icc");IccProfileExtended iccProfile = new IccProfileExtended(fileName);// define the colorants databyte[] colorantsData = new byte[3] { 1, 2, 3 };// define the tag typeIccColorantOrderTagType colorantOrderType = new IccColorantOrderTagType(colorantsData);// add the new tag to the ICC ProfileiccProfile.AddTag(colorantOrderType, IccTag.ColorantOrderTag, IccTagTypeBase.ColorantOrderTypeSignature);// 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, "IccColorantOrderTagTypeCS.icc");iccProfile.GenerateIccFile(IccfileName);}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images";}
Imports LeadtoolsImports Leadtools.ColorConversionPublic Sub IccColorantOrderTagTypeExample()' load an Icc ProfileDim iccProfile As New IccProfileExtended(Path.Combine(LEAD_VARS.ImagesDir, "EmptyIcc.icc"))' define the colorants dataDim colorantsData() As Byte = {1, 2, 3}' define the tag typeDim colorantOrderType As New IccColorantOrderTagType(colorantsData)' add the new tag to the ICC ProfileiccProfile.AddTag(colorantOrderType, IccTag.ColorantOrderTag, IccTagTypeBase.ColorantOrderTypeSignature)' generate the new profile idiccProfile.GenerateProfileId()' update the icc array with the new changesiccProfile.UpdateDataArray()' write the Icc Profile into a new fileiccProfile.GenerateIccFile(Path.Combine(LEAD_VARS.ImagesDir, "IccColorantOrderTagTypeVB.icc"))End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\LEADTOOLS21\Resources\Images"End Class
IccColorantOrderTagType Members
Leadtools.ColorConversion Namespace
IccParametricCurveTagType Class
IccResponseCurveSet16TagType Class
IccViewingConditionsTagType Class
IccMultiLocalizedUnicodeTagType Class
IccLookupTableAToBTagType Class
IccLookupTableBToATagType Class
IccProfileSequenceDescriptionTagType Class
IccS15Fixed16ArrayTagType Class
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
