製品を閲覧する 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.
16 ビット/チャネル 64 ビット PNG 画像のサポートが追加されました。
using (RasterImage image = (RasterImage)Image.Load("image0.png")) { ImageOptionsBase options = image.GetOriginalOptions(); image.Save("result.png", options); }
以前は、イメージング API の PSD エクスポータは、CMYK カラーを RGB として保存していました。この問題は解決されました。
CMYK
RGB
using (JpegImage image = (JpegImage)Image.Load("cat.jpg")) { image.Save( "output_CMYK_8.psd", new PsdOptions() { ColorMode = ColorModes.Cmyk }); }
.NET Standard 2.0 以降の構成では、System.Drawng.Common/GDI+ の代わりに Aspose.Drawing という代替グラフィック エンジンのサポートが追加されました。
System.Drawng.Common/GDI+
DNG を JPG にすると画像の色が変わります。
DNG
JPG
using (Image image = Image.Load("input.dng", new DngLoadOptions() { AdjustWhiteBalance = true })) { image.Save("input.dng.jpg", new JpegOptions()); }
このリリースの機能、拡張機能、バグ修正の完全なリストについては、Aspose.Imaging for .NET 22.10 - Release notes にアクセスしてください。