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.
Added the support for 16-bit/Channel 64 bit PNG images.
using (RasterImage image = (RasterImage)Image.Load("image0.png")) { ImageOptionsBase options = image.GetOriginalOptions(); image.Save("result.png", options); }
Previously the imaging API’s PSD exporter was saving the CMYK colors as RGB. This issue has now been resolved.
CMYK
RGB
using (JpegImage image = (JpegImage)Image.Load("cat.jpg")) { image.Save( "output_CMYK_8.psd", new PsdOptions() { ColorMode = ColorModes.Cmyk }); }
Added the support of alternative graphics engine, Aspose.Drawing instead of System.Drawng.Common/GDI+ for .NET Standard 2.0 and higher configurations.
System.Drawng.Common/GDI+
DNG to JPG changes image color.
DNG
JPG
using (Image image = Image.Load("input.dng", new DngLoadOptions() { AdjustWhiteBalance = true })) { image.Save("input.dng.jpg", new JpegOptions()); }
For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Imaging for .NET 22.10 - Release notes.