public static readonly int Rst0 extern const NSInteger LTRasterMarkerMetadataRst0 public transient static final int RST0 public:static readonly int Rst0
Rst0 (RasterMarkerMetadata) using Leadtools;using Leadtools.Codecs;public void RasterMarkerMetadataExample(){RasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1.cmp");string destFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1_markers.tif");// Load the imageRasterImage image = codecs.Load(srcFileName);codecs.Save(image, destFileName, RasterImageFormat.ExifJpeg, 24);image.Dispose();// write a marker to the fileRasterMarkerMetadata markerWrite = new RasterMarkerMetadata();byte[] data = new byte[100];for (int i = 0; i < data.Length; i++)data[i] = (byte)(i + 1);markerWrite.Id = RasterMarkerMetadata.App2;markerWrite.SetData(data);Console.WriteLine("Writing the marker");codecs.WriteMarker(destFileName, 1, markerWrite);// read the markers from the file and check for oursIList<RasterMarkerMetadata> markers = codecs.ReadMarkers(destFileName);RasterMarkerMetadata markerRead = null;for (int i = 0; i < markers.Count && markerRead == null; i++){if (markers[i].Id == markerWrite.Id)markerRead = markers[i];}Assert.IsTrue(markerRead.Id == markerWrite.Id);byte[] dataRead = markerRead.GetData();byte[] dataWrite = markerWrite.GetData();Assert.IsTrue(dataRead.Length == dataWrite.Length);for (int i = 0; i < dataRead.Length; i++)Assert.IsTrue(dataRead[i] == dataWrite[i]);codecs.Dispose();}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images";}
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
