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.
Aspose.Slides for Python via Java 24.4 introduces a future-proof API replacing legacy java.awt dependencies and providing a cleaner and more efficient approach to presentation processing. Some of the newly added API members are:
java.awt
IImage
ImageFormat
Images
Developers can leverage the new PptxOptions.Zip64Mode property to save presentations in the ZIP64 format for larger files. Please check out the following Python code example to learn about the property usage:
PptxOptions.Zip64Mode
pres = Presentation("demo.pptx"); pptxOptions = PptxOptions(); pptxOptions.setZip64Mode(Zip64Mode.Always); pres.save("demo-zip64.pptx", SaveFormat.Pptx, pptxOptions); pres.dispose();
Source*
The PdfOptions.RasterizeUnsupportedFontStyles property introduced in this version of the Python API enhances the quality of text in PDFs for specific fonts. The following sample code highlights the property usage:
PdfOptions.RasterizeUnsupportedFontStyles
pres = Presentation(); pdfOptions = PdfOptions(); pdfOptions.setRasterizeUnsupportedFontStyles(True); pres.save("pres.pdf", SaveFormat.Pdf, pdfOptions); pres.dispose();
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Slides for Python via Java 24.4 Release Notes.