Browse our Products

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.

 

Aspose.Imaging for .NET 24.9_(Dlls only)

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 51.37MB
  • Date Added:
  • 5/9/2024

Description

It contains Aspose.Imaging for .NET 24.9 (DLLs only) release.

File Details

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.

Improved EMF to Raster Export

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*

Broader SVG Gradient Support

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.

Enhanced TIFF Support

Save TIFF files seamlessly on Windows, Linux, and macOS with this C# library release as the memory-related exceptions have now been addressed.

Code example:


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);
}

Source*

Public API Changes

  • New DICOM image APIs: Add, remove, and update DICOM tags with DicomImageInfo.AddTag, DicomImageInfo.RemoveTagAt, and more.
  • Streamlined image serialization: APIs like Image.GetSerializedStream are now available for seamless image streaming.

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.

 English