製品を閲覧する Toggle navigation
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.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
アイコン ファイル (.ico) ファイル形式のサポートが追加されました。
using(Image image = Image.Load("icon-24bit.ico")) { image.Save("result.png", new PngOptions()); }
Apple MakerNote タグを解析する機能。次の例は、JPEG から EXIF メーカー ノートを取得する方法を示しています。
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); } } } }
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 にアクセスしてください。