
Visual Basic (Declaration) | |
---|---|
Public Class IccUint8ArrayTagType Inherits IccTagTypeBase |
Visual Basic (Usage) | ![]() |
---|---|
Dim instance As IccUint8ArrayTagType |
C# | |
---|---|
public class IccUint8ArrayTagType : IccTagTypeBase |
C++/CLI | |
---|---|
public ref class IccUint8ArrayTagType : public IccTagTypeBase |
This example method can be used in creating an "uInt8ArrayType" mentioned in the ICC.1:2004-10 specification.
Visual Basic | ![]() |
---|---|
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 |
C# | ![]() |
---|---|
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"; } |
SilverlightCSharp | ![]() |
---|---|
SilverlightVB | ![]() |
---|---|
- The signature for this tag type is IccTagTypeBase.UInt8ArrayTypeSignature.
- This type represents an array of generic 1-byte/8-bit quantity.
System.Object
Leadtools.ColorConversion.IccTagTypeBase
Leadtools.ColorConversion.IccUint8ArrayTagType
Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)
Reference
IccUint8ArrayTagType MembersLeadtools.ColorConversion Namespace
IccTagTypeBase Class
IccCurveTagType Class
IccDateTimeTagType Class
IccDataTagType Class
IccLookupTable16TagType Class
IccLookupTable8TagType Class
IccMeasurementTagType 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
IccXyzTagType Class
IccUnknownTagType Class
IccTools Class
IccProfileExtended Class