Leadtools.ColorConversion Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
IccMeasurementTagType Class
See Also  Members   Example 
Leadtools.ColorConversion Namespace : IccMeasurementTagType Class



Contains the measurementType tag type data.

Object Model


Syntax

Visual Basic (Declaration) 
Public Class IccMeasurementTagType 
   Inherits IccTagTypeBase
Visual Basic (Usage)Copy Code
Dim instance As IccMeasurementTagType
C# 
public class IccMeasurementTagType : IccTagTypeBase 
C++/CLI 
public ref class IccMeasurementTagType : public IccTagTypeBase 

Example

This example method can be used in creating an "measurementType" mentioned in the ICC.1:2004-10 specification.

Visual BasicCopy Code
Public Sub IccMeasurementTagTypeExample()
   ' load an Icc Profile
   Dim iccProfile As New IccProfileExtended(LeadtoolsExamples.Common.ImagesPath.Path + "EmptyIcc.icc")

   ' define an xyz class to be used in the iccMeasurementType
   Dim xyzBacking As New IccXyzNumber(IccTools.FromDoubleTo2bFixed2bNumber(0.0), _
         IccTools.FromDoubleTo2bFixed2bNumber(1.0), _
         IccTools.FromDoubleTo2bFixed2bNumber(2.0))

   ' create the IccMeasurement class
   Dim iccMeasurement As New IccMeasurement(IccStandardObserverType.StdandardObserverUnknown, _
         xyzBacking, _
         IccMeasurementGeometryType.GeometryUnknown, _
         IccMeasurementFlareType.Flare0, _
         IccStandardIlluminantType.IccIlluminantUnknown)

   ' define the tag type
   Dim iccMeasurementTagType As New IccMeasurementTagType(iccMeasurement)

   ' add the new tag to the ICC Profile
   iccProfile.AddTag(iccMeasurementTagType, IccTag.MeasurementTag, IccTagTypeBase.MeasurementTypeSignature)

   ' 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(LeadtoolsExamples.Common.ImagesPath.Path + "IccMeasurementTagTypeVB.icc")
End Sub
C#Copy Code
public void IccMeasurementTagTypeExample() 

   // load an Icc Profile 
   string fileName = LeadtoolsExamples.Common.ImagesPath.Path + "EmptyIcc.icc"; 
   IccProfileExtended iccProfile = new IccProfileExtended(fileName); 
 
   // define an xyz class to be used in the iccMeasurementType 
   IccXyzNumber xyzBacking = new IccXyzNumber( 
      IccTools.FromDoubleTo2bFixed2bNumber(0.0), 
      IccTools.FromDoubleTo2bFixed2bNumber(1.5), 
      IccTools.FromDoubleTo2bFixed2bNumber(2.0)); 
 
   // create the IccMeasurement class 
   IccMeasurement iccMeasurement = new IccMeasurement( 
      IccStandardObserverType.StdandardObserverUnknown, 
      xyzBacking, 
      IccMeasurementGeometryType.GeometryUnknown, 
      IccMeasurementFlareType.Flare0, 
      IccStandardIlluminantType.IccIlluminantUnknown); 
 
   // define the tag type 
   IccMeasurementTagType iccMeasurementTagType = new IccMeasurementTagType(iccMeasurement); 
 
   // add the new tag to the ICC Profile 
   iccProfile.AddTag(iccMeasurementTagType, IccTag.MeasurementTag, IccTagTypeBase.MeasurementTypeSignature); 
 
   // 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 = LeadtoolsExamples.Common.ImagesPath.Path + "IccMeasurementTagTypeCS.icc"; 
   iccProfile.GenerateIccFile(IccfileName); 
}

Remarks

Inheritance Hierarchy

System.Object
   Leadtools.ColorConversion.IccTagTypeBase
      Leadtools.ColorConversion.IccMeasurementTagType

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also