Blader door onze producten

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 für .NET 22.9

Downloaden  Helpforum 

Bestandsdetails

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

Bestandsdetails

Symbol (.ico) Dateiformatunterstützung

Unterstützung für das Dateiformat Icon File (.ico) hinzugefügt.

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

Parsen von Apple® MakerNote-Tags

Möglichkeit, die Apple MakerNote-Tags zu analysieren. Das folgende Beispiel zeigt, wie EXIF Maker Notes aus JPEG abgerufen werden:

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

Konvertierung von CDR in PDF

Unterstützung für die Konvertierung der CDR-Vektorgrafikdateien von CorelDRAW in das Adobe Acrobat PDF-Dateiformat.

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

Eine vollständige Liste der Funktionen, Verbesserungen und Fehlerbehebungen in dieser Version finden Sie unter Aspose.Imaging for .NET 22.9 - Release notes.

 Deutsch