Browse our Products 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.
Ajout de la prise en charge des images PNG 16 bits/canal 64 bits.
using (RasterImage image = (RasterImage)Image.Load("image0.png")) { ImageOptionsBase options = image.GetOriginalOptions(); image.Save("result.png", options); }
Auparavant, l’exportateur PSD de l’API d’imagerie enregistrait les couleurs “CMJN” au format “RVB”. Ce problème est maintenant résolu.
using (JpegImage image = (JpegImage)Image.Load("cat.jpg")) { image.Save( "output_CMYK_8.psd", new PsdOptions() { ColorMode = ColorModes.Cmyk }); }
Ajout de la prise en charge du moteur graphique alternatif, Aspose.Drawing au lieu de System.Drawng.Common/GDI+ pour les configurations .NET Standard 2.0 et supérieures.
System.Drawng.Common/GDI+
DNG à JPG change la couleur de l’image.
DNG
JPG
using (Image image = Image.Load("input.dng", new DngLoadOptions() { AdjustWhiteBalance = true })) { image.Save("input.dng.jpg", new JpegOptions()); }
Pour une liste complète des fonctionnalités, améliorations et corrections de bogues de cette version, veuillez consulter Aspose.Imaging for .NET 22.10 - Release notes.