←Select platform

IccMeasurementTagType Class

Summary
Contains the measurementType tag type data.
Syntax
C#
C++/CLI
Python
public class IccMeasurementTagType : IccTagTypeBase 
public ref class IccMeasurementTagType : public IccTagTypeBase  
class IccMeasurementTagType(IccTagTypeBase): 
Remarks
Example

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

C#
using Leadtools; 
using Leadtools.ColorConversion; 
 
using Leadtools.Codecs; 
 
public string outputIccFile = Path.Combine(LEAD_VARS.ImagesDir, "IccMeasurementTagType.icc"); 
 
public void IccMeasurementTagTypeExample() 
{ 
   // Load an ICC profile 
   string fileName = Path.Combine(LEAD_VARS.ImagesDir, "InputProfile.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 
   iccProfile.GenerateIccFile(outputIccFile); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
} 
Requirements

Target Platforms

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

Leadtools.ColorConversion Assembly

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