The latest release of Aspose.Imaging for .NET (v24.7, MSI installer) delivers key enhancements for medical imaging developers. Leverage DICOM YBR 422 support, fine-tuned GIF saving, and SVG to EMF export.
Efficiently process DICOM YBR 422 medical images in your .NET applications using the latest C# imaging API release. The following code example showcases how to load a DCM image and convert it to a PNG image.
var inputPath = @"input.dcm";
using var image = Image.Load(@"input.dcm");
image.Save(inputPath + ".png");
Source*
Immaculate GIF Saving
Get rid of distorted output when saving GIF files with Aspose.Imaging for .NET 24.7 and boosting your C# image processing solutions seamlessly. Here is how you can precisely export a GIF image in your .NET applications.
var originalPath = @"input.gif";
var inputPath = original + "-copy.gif";
File.Copy(originalPath, inputPath, true);
using var image1 = Image.Load(inputPath);
image1.Save();
using var image2 = Image.Load(inputPath);
image2.Save();
Source*
EMF Rendering Improvements
The issues preventing accurate character drawing in EMF format are now resolved and you can work with refined EMF rendering functionality in your C# applications. This code example shows how you can easily render an EMF file and save it as PDF.
cpp
using (var image = Image.Load("D:\\16.emf"))
{
image.Save("D:\\16_fixed.pdf");
}
Source*
High-Quality SVG to EMF Export
Developers can ensure professional-looking output while converting SVG to EMF in their .NET applications with this update. We have optimized the SVG to EMF export functionality so that you can get pristine EMF files without any unwanted closed lines. Check out this code example to learn how to use this feature in C#.
var inputPath = @"input.svg";
using var image = Image.Load(inputPath);
image.Save(inputPath + ".emf");
Source*
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Imaging for .NET 24.7 Release Notes.