.NET 8 Configuration Support
Aspose.Imaging for .NET 24.5 offers the latest .NET 8 advancements for your .NET projects to help expand the compatibility of your imaging applications and upgrade the app development workflows.
Enhanced EPS Rendering
The latest release of the C# imaging API delivers improved rendering quality and functionality when working with EPS images. The following code example demonstrates EPS to PNG conversion:
var input = @"input.eps";
using var image = Image.Load(input, new LoadOptions { DataRecoveryMode = DataRecoveryMode.ConsistentRecover });
image.Save(input + ".png");
Source*
.NET developers can now gain more control over DICOM image tags with new methods for adding, removing, and updating tags including AddTag
and RemoveTagAt
.
EPS to SVG Conversion
Upgrade your .NET image conversion apps with the ability to quickly convert EPS images to SVG vectors using this release of the C# API. This code example illustrates EPS to SVG conversion:
var inputPath = @"image.eps";
using var image = Image.Load(inputPath);
image.Save(inputPath + ".svg");
Source*
Streamlined Image Serialization
With this version of the Aspose.Imaging for .NET API, you can get serialized image streams efficiently using the newly added GetSerializedStream
method.
Public API Additions
We have introduced several new methods and properties to the imaging API in this release to help C# developers build feature-rich image processing applications in .NET.
Download the MSI installer of Aspose.Imaging for .NET 24.5 today and start manipulating image files on your desktop or web-based solutions.
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Imaging for .NET 24.5 Release Notes.