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 (DLLs Only) delivers new features focused on improving EMF and SVG file processing, including expanded gradient support and enhanced memory optimization across Windows, Linux, and macOS platforms.
Experience highly accurate EMF to SVG conversion and output precision within your C# and VB.NET applications across platforms with the latest .NET imaging API version.
Code example:
var inputPath = @"input.emf"; using var image = Image.Load(inputPath); image.Save(inputPath + ".svg");
Source*
Aspose.Imaging for .NET now supports enhanced quality and flexibility of gradients in SVG exports. This update lets developers refine the visual appeal of their SVG files.
Save TIFF files seamlessly on Windows, Linux, and macOS with this C# library release as the memory-related exceptions have now been addressed.
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.