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 22.9

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 43.59MB
  • Date Added:
  • 2/9/2022

File Details

Icon (.ico) File Format Support

Added the support for the Icon File (.ico) file format.

using(Image image = Image.Load("icon-24bit.ico"))
{
    image.Save("result.png", new PngOptions());
}

Apple® MakerNote Tags Parsing

Ability to parse the Apple MakerNote tags. The following example demonstrates how to fetch EXIF maker notes from JPEG:

var dict = new Dictionary<string, string>();
using (var image = Image.Load("input.jpeg") as JpegImage)
{
    var jpegExifData = image.ExifData;
    if (jpegExifData != null)
    {
        var makerNotes = jpegExifData.MakerNotes;
        if (makerNotes != null)
        {
            foreach (var makerNote in makerNotes)
            {
                dict.Add(makerNote.Name, makerNote.Value);
            }
        }
    }
}

CDR to PDF conversion

Support for converting the CorelDRAW’s CDR vector graphic files to Adobe Acrobat PDF file format.

var baseFolder = @"D:\";
var inputFile = Path.Combine(baseFolder, "zweedsloopspel jungle.cdr");
using (Image image = Image.Load(inputFile))
{
    image.Save(inputFile + ".pdf", new PdfOptions());
}

For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Imaging for .NET 22.9 - Release notes.

 English