←Select platform

IccData Structure

Summary
Contains either 7-bit ASCII or binary data for the dataType tag type.
Syntax
C#
C++/CLI
Python
public struct IccData 
public value class IccData : public System.ValueType  
class IccData: 
Example
C#
using Leadtools; 
using Leadtools.ColorConversion; 
 
using Leadtools.Codecs; 
 
public string outputIccFile = Path.Combine(LEAD_VARS.ImagesDir, "IccDataTagType.icc"); 
 
public void IccDataTagTypeExample() 
{ 
   // Load an ICC profile 
   string IccfileName = Path.Combine(LEAD_VARS.ImagesDir, "InputProfile.icc"); 
   IccProfileExtended iccProfile = new IccProfileExtended(IccfileName); 
 
   // Define the data to be filled in the iccDataType 
   string strData = "ASCII data to be inserted here"; 
 
   // Create the iccDataType 
   IccData iccData = new IccData(Encoding.ASCII.GetBytes(strData), IccDataType.Ascii); 
 
   // Define the tag type 
   IccDataTagType iccDataTagType = new IccDataTagType(iccData); 
 
   // Add the new tag to the ICC profile 
   iccProfile.AddTag(iccDataTagType, 0x64617461, IccTagTypeBase.DataTypeSignature); 
 
   // 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.