Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Aspose.Imaging for .NET 24.9 (MSI) brings powerful feature enhancements to EMF to SVG conversion, extends SVG gradient support, and fixes key TIFF-related memory issues.
With the latest C# imaging API version, you can enjoy highly accurate EMF to SVG conversion and output precision within your .NET applications on Windows.
Code example:
var inputPath = @"input.emf"; using var image = Image.Load(inputPath); image.Save(inputPath + ".svg");
Source*
Version 24.8 of Aspose.Imaging for .NET enhances the quality and flexibility of gradients in SVG exports. This update allows developers to improve the visual appeal of their SVG files.
The memory-related exceptions have been reduced in this C# library version with empowered TIFF file-saving functionality.
public void TiffTest() { var ms = new MemoryStream(); SaveTiff(ms); GC.Collect(); GC.WaitForPendingFinalizers(); // does not throw exception Console.WriteLine(ms.Position); } static void SaveTiff(Stream stream) { var tiffOptions = new TiffOptions(TiffExpectedFormat.TiffLzwRgba) { Source = new StreamSource(stream) }; using (var image = Image.Create(tiffOptions, 1000, 1000)) { image.Save(); } // does not throw exception Console.WriteLine(stream.Position); }
DicomImageInfo.AddTag
DicomImageInfo.RemoveTagAt
Image.GetSerializedStream
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Imaging for .NET 24.9 Release Notes.