Support for .NET 8 Configuration
Version 24.5 of Aspose.Imaging for .NET offers the latest .NET 8 configurations for your projects to help expand the compatibility of your imaging apps and upgrade the app development workflows.
Advanced EPS Rendering
The latest release of the C# imaging API provides enhanced rendering quality and improved 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*
You can now experience more control over DICOM image tags with new methods for adding, removing, and updating tags including AddTag
and RemoveTagAt
.
Optimized EPS to SVG Conversion
.NET developers can upgrade their .NET image conversion apps with the capability 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*
Image Serialization Improvements
Aspose.Imaging for .NET API offers serialized image streams which can be utilized efficiently using the newly added GetSerializedStream
method.
Public API Additions
We have added several new methods and properties to the public API in this release to help C# developers build feature-rich image processing applications on the .NET platform.
Download the DLLs-only package of Aspose.Imaging for .NET 24.5 today and start manipulating image files on a platform of your choice.
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.