浏览我们的产品

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

下载  支持论坛 

文件详情

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

文件详情

图标 (.ico) 文件格式支持

添加了对图标文件 (.ico) 文件格式的支持。

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

Apple® MakerNote 标签解析

能够解析 Apple MakerNote 标签。以下示例演示了如何从 JPEG 中获取 EXIF 制作者注释:

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 到 PDF 的转换

支持将 CorelDRAW 的 CDR 矢量图形文件转换为 Adobe Acrobat PDF 文件格式。

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

有关此版本中的功能、增强和错误修复的完整列表,请访问 Aspose.Imaging for .NET 22.9 - Release notes

 简体中文