←Select platform

IccMeasurement Structure

Summary
Contains data to be used in the measurementType tag type.
Syntax
C#
C++/CLI
Python
public struct IccMeasurement 
public value class IccMeasurement : public System.ValueType  
class IccMeasurement: 
Example
C#
using Leadtools; 
using Leadtools.ColorConversion; 
 
 
public void IccMeasurementTagTypeExample() 
{ 
   // load an Icc Profile 
   string fileName = Path.Combine(LEAD_VARS.ImagesDir, "ReadFromImageCS.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:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ColorConversion Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.