Aspose.Imaging for .NET 24.7 (DLLs-only) offers a range of improvements for developers working with various image formats. This release introduces DICOM YBR 422 support and addresses the issues with GIF saving, EMF rendering, and SVG export.
Effortlessly process DICOM YBR 422 medical images within your C# and VB.NET applications using the newest C# imaging API version. 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*
Impeccable GIF Saving
Eliminate deformed output while saving GIF images with Aspose.Imaging for .NET 24.7 to supercharge your .NET image processing solutions easily. 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*
Empowered EMF Rendering
We have resolved the problems related to accurate character drawing in EMF format, allowing you to 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*
Upgraded SVG to EMF Export
Implement SVG to EMF conversion capability into your platform-independent applications and ensure pristine output with this update. 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.