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

IccMeasurementTagType Class

Example 





Members 
Contains the measurementType tag type data. .NET support
Object Model
IccMeasurementTagType ClassIccMeasurement Structure
Syntax
public class IccMeasurementTagType : IccTagTypeBase 
'Declaration
 
Public Class IccMeasurementTagType 
   Inherits IccTagTypeBase
'Usage
 
Dim instance As IccMeasurementTagType
public sealed class IccMeasurementTagType : IccTagTypeBase 
function Leadtools.ColorConversion.IccMeasurementTagType()
public ref class IccMeasurementTagType : public IccTagTypeBase 
Remarks
Example
Copy CodeCopy Code  
Public Sub IccMeasurementTagTypeExample()
      ' load an Icc Profile
      Dim iccProfile As New IccProfileExtended(Path.Combine(LEAD_VARS.ImagesDir, "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(Path.Combine(LEAD_VARS.ImagesDir, "IccMeasurementTagTypeVB.icc"))
   End Sub

Public NotInheritable Class LEAD_VARS
   Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
public void IccMeasurementTagTypeExample()
   {
      // load an Icc Profile
      string fileName = Path.Combine(LEAD_VARS.ImagesDir, "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 = Path.Combine(LEAD_VARS.ImagesDir, "IccMeasurementTagTypeCS.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

IccMeasurementTagType Members
Leadtools.ColorConversion Namespace
IccTagTypeBase Class
IccCurveTagType Class
IccDateTimeTagType Class
IccDataTagType Class
IccLookupTable16TagType Class
IccLookupTable8TagType Class
IccNamedColor2TagType Class
IccParametricCurveTagType Class
IccResponseCurveSet16TagType Class
IccViewingConditionsTagType Class
IccChromaticityTagType Class
IccColorantTableTagType 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.