LEADTOOLS Color Conversion (Leadtools.ColorConversion assembly)
LEAD Technologies, Inc

IccColorantTableTagType Class

Example 





Members 
Contains the colorantTableType tag type data. .NET support
Object Model
IccColorantTableTagType ClassIccColorantTableData Structure
Syntax
public class IccColorantTableTagType : IccTagTypeBase 
'Declaration
 
Public Class IccColorantTableTagType 
   Inherits IccTagTypeBase
'Usage
 
Dim instance As IccColorantTableTagType
public sealed class IccColorantTableTagType : IccTagTypeBase 
function Leadtools.ColorConversion.IccColorantTableTagType()
public ref class IccColorantTableTagType : public IccTagTypeBase 
Remarks
Example
Copy CodeCopy Code  
Public Sub IccColorantTableTagTypeExample()
      ' load an Icc Profile
      Dim iccProfile As New IccProfileExtended(Path.Combine(LEAD_VARS.ImagesDir, "EmptyIcc.icc"))

      ' we will have 3 colorants
      ' define the first colorant name and value
      Dim colorantName1 As String = "Luminance"
      Dim pcsValues1() As UShort = {1, 0, 0}

      ' define the second colorant name and value
      Dim colorantName2 As String = "A"
      Dim pcsValues2() As UShort = {0, 1, 0}

      ' define the third colorant name and value
      Dim colorantName3 As String = "B"
      Dim pcsValues3() As UShort = {0, 0, 1}

      ' define one color in the colorant table & create a new ColorantTable type
      Dim iccColorantTable() As IccColorantTableData = { _
         New IccColorantTableData(Encoding.ASCII.GetBytes(colorantName1), pcsValues1), _
         New IccColorantTableData(Encoding.ASCII.GetBytes(colorantName2), pcsValues2), _
         New IccColorantTableData(Encoding.ASCII.GetBytes(colorantName3), pcsValues3)}

      ' define the tag type
      Dim iccColorantTableTagType As New IccColorantTableTagType(iccColorantTable)

      ' add the new tag to the ICC Profile
      iccProfile.AddTag(iccColorantTableTagType, IccTag.ColorantTableTag, IccTagTypeBase.ColorantTableTypeSignature)

      ' 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(Path.Combine(LEAD_VARS.ImagesDir, "IccColorantTableTagTypeVB.icc"))
   End Sub

Public NotInheritable Class LEAD_VARS
   Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
public void IccColorantTableTagTypeExample()
   {
      // load an Icc Profile
      string fileName = Path.Combine(LEAD_VARS.ImagesDir, "EmptyIcc.icc");
      IccProfileExtended iccProfile = new IccProfileExtended(fileName);

      // we will have 3 colorants
      // define the first colorant name and value
      string colorantName1 = "Luminance";
      ushort[] pcsValues1 = new ushort[3] { 1, 0, 0 };

      // define the second colorant name and value
      string colorantName2 = "A";
      ushort[] pcsValues2 = new ushort[3] { 0, 1, 0 };

      // define the third colorant name and value
      string colorantName3 = "B";
      ushort[] pcsValues3 = new ushort[3] { 0, 0, 1 };

      // define one color in the colorant table
      IccColorantTableData[] iccColorantTable = new IccColorantTableData[3];

      // create a new ColorantTable type
      iccColorantTable[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 type
      IccColorantTableTagType iccColorantTableTagType = new IccColorantTableTagType(iccColorantTable);

      // add the new tag to the ICC Profile
      iccProfile.AddTag(iccColorantTableTagType, IccTag.ColorantTableTag, IccTagTypeBase.ColorantTableTypeSignature);

      // 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
      string IccfileName = Path.Combine(LEAD_VARS.ImagesDir, "IccColorantTableTagTypeCS.icc");
      iccProfile.GenerateIccFile(IccfileName);
   }

static class LEAD_VARS
{
   public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

IccColorantTableTagType Members
Leadtools.ColorConversion Namespace
IccTagTypeBase Class
IccCurveTagType Class
IccDateTimeTagType Class
IccDataTagType Class
IccLookupTable16TagType Class
IccLookupTable8TagType Class
IccMeasurementTagType Class
IccNamedColor2TagType Class
IccParametricCurveTagType Class
IccResponseCurveSet16TagType Class
IccViewingConditionsTagType Class
IccChromaticityTagType Class
IccMultiLocalizedUnicodeTagType Class
IccColorantOrderTagType Class
IccLookupTableAToBTagType Class
IccLookupTableBToATagType Class
IccProfileSequenceDescriptionTagType Class
IccS15Fixed16ArrayTagType Class
IccSignatureTagType Class
IccTextTagType Class
IccU16Fixed16ArrayTagType Class
IccUint16ArrayTagType Class
IccUint32ArrayTagType Class
IccUint64ArrayTagType Class
IccUint8ArrayTagType Class
IccXyzTagType Class
IccUnknownTagType Class
IccTools Class
IccProfileExtended Class

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.