public class IccS15Fixed16ArrayTagType : IccTagTypeBase
public ref class IccS15Fixed16ArrayTagType : public IccTagTypeBase
class IccS15Fixed16ArrayTagType(IccTagTypeBase):
This example method can be used in creating an "s15Fixed16ArrayType" mentioned in the ICC.1:2004-10 specification.
using Leadtools;
using Leadtools.ColorConversion;
using Leadtools.Codecs;
public string outputIccProfile = Path.Combine(LEAD_VARS.ImagesDir, "ColorConversion", "GetIccProfileTag", "IccS15Fixed16ArrayTagType.icc");
public void IccS15Fixed16ArrayTagTypeExample()
{
// load an ICC profile
string fileName = Path.Combine(LEAD_VARS.ImagesDir, "ColorConversion", "InputProfile.icc");
IccProfileExtended iccProfile = new IccProfileExtended(fileName);
// define the array of s15Fixed16Number, for chromaticAdaptationTag
// there has to be 9 elements in the array
int[] data = new int[9] {
IccTools.FromDoubleTo2bFixed2bNumber(1.0),
IccTools.FromDoubleTo2bFixed2bNumber(2.0),
IccTools.FromDoubleTo2bFixed2bNumber(3.0),
IccTools.FromDoubleTo2bFixed2bNumber(4.0),
IccTools.FromDoubleTo2bFixed2bNumber(5.0),
IccTools.FromDoubleTo2bFixed2bNumber(6.0),
IccTools.FromDoubleTo2bFixed2bNumber(7.0),
IccTools.FromDoubleTo2bFixed2bNumber(8.0),
IccTools.FromDoubleTo2bFixed2bNumber(9.0)};
// define the tag type
IccS15Fixed16ArrayTagType s15Fixed16ArrayTagType = new IccS15Fixed16ArrayTagType(data);
// add the new tag to the ICC profile
iccProfile.AddTag(s15Fixed16ArrayTagType, IccTag.ChromaticAdaptationTag, IccTagTypeBase.S15Fixed16ArrayTypeSignature);
// 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(outputIccProfile);
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images";
}
IccS15Fixed16ArrayTagType Members
Leadtools.ColorConversion Namespace
IccParametricCurveTagType Class
IccResponseCurveSet16TagType Class
IccViewingConditionsTagType Class
IccMultiLocalizedUnicodeTagType Class
IccLookupTableAToBTagType Class
IccLookupTableBToATagType Class
IccProfileSequenceDescriptionTagType Class
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document