Browse our Products
Aspose.Page for .NET 25.10 Release Notes
This page contains release notes information for Aspose.Page for .NET 25.10.
Improvements and Changes
Now saving XPS as image files can be done in 2 lines. Either this:
//Save XPS document as image files in the folder where input XPS file is located with the name of this XPS file with index of page suffix.
XpsDocument document = new XpsDocument(xpsFilePath);
document.SaveAsImage(new JpegSaveOption());or that:
//Save XPS document as image files in the assigned folder and file name template.
//Index of the page will be added as a suffix to file name template and the extension will be obtained from the save options.
XpsDocument document = new XpsDocument(xpsFilePath);
document.SaveAsImage(new PngSaveOption(), outputDir, fileNameTemplate);| Key | Summary | Category |
|---|---|---|
| PAGENET-815 | Enhance public API for saving XPS as image | Enhancement |
Public API and Backwards Incompatible Changes
Added APIs
M:Aspose.Page.EPS.PsDocument.SaveAsImage(Aspose.Page.EPS.Device.ImageSaveOptions,System.String,System.String) M:Aspose.Page.EPS.PsDocument.SaveAsImageBytes(Aspose.Page.EPS.Device.ImageSaveOptions)
Got any Query?
In case you have any query or need assistance in getting started with Aspose.Page for .NET, head on to Aspose.Page forum to technical help from our support team.