←Select platform

IccUint8ArrayTagType Class

Summary

Contains the uInt8ArrayType tag type data.

Syntax

C#
VB
C++
public class IccUint8ArrayTagType : IccTagTypeBase 
  
Public Class IccUint8ArrayTagType  
   Inherits Leadtools.Colorconversion.IccTagTypeBase 
public ref class IccUint8ArrayTagType : public Leadtools.Colorconversion.IccTagTypeBase  

Remarks
Example

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

C#
VB
using Leadtools; 
using Leadtools.ColorConversion; 
 
public void IccUint8ArrayTagTypeExample() 
{ 
   // load an Icc Profile 
   string fileName = Path.Combine(LEAD_VARS.ImagesDir, "EmptyIcc.icc"); 
   IccProfileExtended iccProfile = new IccProfileExtended(fileName); 
 
   // define the array of unsigned 64-bit integers 
   byte[] data = new byte[1] { 8 }; 
 
   // define the tag type 
   IccUint8ArrayTagType uInt8ArrayTagType = new IccUint8ArrayTagType(data); 
 
   // add the new tag to the ICC Profile 
   iccProfile.AddTag(uInt8ArrayTagType, 0x54616745, IccTagTypeBase.UInt8ArrayTypeSignature); 
 
   // 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, "IccUint8ArrayTagTypeCS.icc"); 
   iccProfile.GenerateIccFile(IccfileName); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images"; 
} 
Imports Leadtools 
Imports Leadtools.ColorConversion 
 
Public Sub IccUint8ArrayTagTypeExample() 
   ' load an Icc Profile 
   Dim iccProfile As New IccProfileExtended(Path.Combine(LEAD_VARS.ImagesDir, "EmptyIcc.icc")) 
 
   ' define the array of unsigned 64-bit integers 
   Dim data() As Byte = {8} 
 
   ' define the tag type 
   Dim uInt8ArrayTagType As New IccUint8ArrayTagType(data) 
 
   ' add the new tag to the ICC Profile 
   iccProfile.AddTag(uInt8ArrayTagType, &H54616745, IccTagTypeBase.UInt8ArrayTypeSignature) 
 
   ' 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, "IccUint8ArrayTagTypeVB.icc")) 
End Sub 
 
Public NotInheritable Class LEAD_VARS 
   Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images" 
End Class 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ColorConversion Assembly