Saves a CompositeJpxImages list to a file in any of the supported JPEG 2000 file formats. This method is available in the Document/Medical Toolkits.
public void SaveComposite(RasterCodecs codecs,string fileName,List<CompositeJpxImages> compositeImages,Jpeg2000FileFormat format,int bitsPerPixel,int qualityFactor)
Public Overloads Sub SaveComposite( _ByVal codecs As Leadtools.Codecs.RasterCodecs, _ByVal fileName As String, _ByVal compositeImages As List(Of CompositeJpxImages), _ByVal format As Leadtools.Jpeg2000.Jpeg2000FileFormat, _ByVal bitsPerPixel As Integer, _ByVal qualityFactor As Integer _)
public:void SaveComposite(Leadtools.Codecs.RasterCodecs^ codecs,String^ fileName,List<CompositeJpxImages^>^ compositeImages,Leadtools.Jpeg2000.Jpeg2000FileFormat format,int bitsPerPixel,int qualityFactor)
codecs
The Leadtools.Codecs.RasterCodecs object.
fileName
System.String containing the name of the file currently being saved.
compositeImages
List of CompositeJpxImages containing the image layer data that will be saved.
format
Output JPEG 2000 file format. For valid values, refer to Jpeg2000FileFormat.
bitsPerPixel
Resulting file's pixel depth. Possible values are: 8, 12, 16, 24, 32, 48, 64, and 0. Zero [0] means that each image will be saved with its bits per pixel value, if that value is equal to one of the possible values (8, 12, 16, 24, 32, 48, or 64).
qualityFactor
Quality factor. This value determines the degree of loss in the compression process. Possible values are from 0 to 255. A value of zero (0) represents lossless compression. Values between 1 and 255 are interpreted as a compression ratio.
All of the engine boxes that are currently set will also be saved in this file.
using Leadtools;using Leadtools.Codecs;using Leadtools.Jpeg2000;public void SaveCompositeStringExample(byte[] xmlData){RasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;// Load a JPEG 2000 imageJpeg2000Engine engine = new Jpeg2000Engine();List<CompositeJpxImages> images = engine.LoadComposite(codecs, Path.Combine(LEAD_VARS.ImagesDir, "image1.jpx"), 0, CodecsLoadByteOrder.BgrOrGray);engine.ResetEngineBoxes();GtsoBox gtsoBox = (GtsoBox)(engine.ReadBox(Path.Combine(LEAD_VARS.ImagesDir, "image1.jpx"), Jpeg2000BoxType.GtsoBox, 0));engine.SetBox(Jpeg2000FileFormat.LeadJpx, gtsoBox);//Save the image in JPX file formatengine.SaveComposite(codecs, Path.Combine(LEAD_VARS.ImagesDir, "Test.jpx"), images, Jpeg2000FileFormat.LeadJpx, 24, 5);//Append an XML boxXmlBox xmlBox = new XmlBox();xmlBox.Data = xmlData;List<XmlBox> xmlBoxes = new List<XmlBox>();xmlBoxes.Add(xmlBox);engine.AppendBoxes(Path.Combine(LEAD_VARS.ImagesDir, "Test.jpx"), xmlBoxes);// Clean upforeach (CompositeJpxImages image in images){image.ColorImage.Dispose();image.OpacityImage.Dispose();image.PreOpacityImage.Dispose();}codecs.Dispose();}static class LEAD_VARS{public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.Jpeg2000Public Sub SaveCompositeStringExample(ByVal xmlData() As Byte)Dim codecs As New RasterCodecs()codecs.ThrowExceptionsOnInvalidImages = True' Load a JPEG 2000 imageDim engine As New Jpeg2000Engine()Dim images As List(Of CompositeJpxImages) = engine.LoadComposite(codecs, Path.Combine(LEAD_VARS.ImagesDir, "image1.jpx"), 0, CodecsLoadByteOrder.BgrOrGray)engine.ResetEngineBoxes()Dim gtsoBox As GtsoBox = DirectCast(engine.ReadBox(Path.Combine(LEAD_VARS.ImagesDir, "image1.jpx"), Jpeg2000BoxType.GtsoBox, 0), GtsoBox)engine.SetBox(Jpeg2000FileFormat.LeadJpx, gtsoBox)' Save the image in JPX file formatengine.SaveComposite(codecs, Path.Combine(LEAD_VARS.ImagesDir, "Test.jpx"), images, Jpeg2000FileFormat.LeadJpx, 24, 5)' Append an XML boxDim _xmlBox As New XmlBox()_xmlBox.Data = xmlDataDim _xmlBoxes As New List(Of XmlBox)_xmlBoxes.Add(_xmlBox)engine.AppendBoxes(Path.Combine(LEAD_VARS.ImagesDir, "Test.jpx"), _xmlBoxes)' Clean upDim _image As CompositeJpxImagesFor Each _image In images_image.ColorImage.Dispose()_image.OpacityImage.Dispose()_image.PreOpacityImage.Dispose()Next _imagecodecs.Dispose()End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
Compression Using LEAD and JPEG Formats
File Formats - JPEG And LEAD Compressed
Bitmaps In Memory And In Files
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
