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.7_(Dlls only)

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 51.43MB
  • Date Added:
  • 3/7/2024

Description

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

File Details

Aspose.Imaging for .NET 24.7 (DLLs-only) offers a range of improvements for developers working with various image formats. This release introduces DICOM YBR 422 support and addresses the issues with GIF saving, EMF rendering, and SVG export.

Support for DICOM YBR 422 Format

Effortlessly process DICOM YBR 422 medical images within your C# and VB.NET applications using the newest C# imaging API version. The following code example showcases how to load a DCM image and convert it to a PNG image.


var inputPath = @"input.dcm";
using var image = Image.Load(@"input.dcm");
image.Save(inputPath + ".png");

Source*

Impeccable GIF Saving

Eliminate deformed output while saving GIF images with Aspose.Imaging for .NET 24.7 to supercharge your .NET image processing solutions easily. Here is how you can precisely export a GIF image in your .NET applications.


var originalPath = @"input.gif";
var inputPath = original + "-copy.gif";
File.Copy(originalPath, inputPath, true);

using var image1 = Image.Load(inputPath);
image1.Save();

using var image2 = Image.Load(inputPath);
image2.Save();

Source*

Empowered EMF Rendering

We have resolved the problems related to accurate character drawing in EMF format, allowing you to work with refined EMF rendering functionality in your C# applications. This code example shows how you can easily render an EMF file and save it as PDF.


cpp
using (var image = Image.Load("D:\\16.emf"))
{
    image.Save("D:\\16_fixed.pdf");
}

Source*

Upgraded SVG to EMF Export

Implement SVG to EMF conversion capability into your platform-independent applications and ensure pristine output with this update. Check out this code example to learn how to use this feature in C#.


var inputPath = @"input.svg";
using var image = Image.Load(inputPath);
image.Save(inputPath + ".emf");

Source*

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Imaging for .NET 24.7 Release Notes.

 English