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.
Embrace a future-proof development experience with the introduction of a modernized API in Aspose.Slides for Android via Java 24.4, replacing legacy java.awt dependencies. We have introduced IImage, ImageFormat, and Images classes in this API version for intuitive image management.
java.awt
IImage
ImageFormat
Images
The deprecated methods are replaced with their modern counterparts for a smoother development workflow using the latest PowerPoint file manipulation API release.
Developers can now control the rendering of unsupported fonts in PDFs and ascertain consistent text quality. This code example illustrates how to incorporate this functionality into your Android presentation processing applications.
Presentation pres = new Presentation(); try { PdfOptions pdfOptions = new PdfOptions(); pdfOptions.setRasterizeUnsupportedFontStyles(true); pres.save("pres.pdf", SaveFormat.Pdf, pdfOptions); } finally { if (pres != null) pres.dispose(); }
Source*
Are you looking for a feature-rich solution for processing larger compressed presentations? Aspose.Slides for Android via Java is the perfect choice for you. It lets you save presentations exceeding the standard ZIP format size limit with ZIP64 mode, as demonstrated in this coding sample.
Presentation pres = new Presentation("demo.pptx"); try { PptxOptions pptxOptions = new PptxOptions(); pptxOptions.setZip64Mode(Zip64Mode.Always); pres.save("demo-zip64.pptx", SaveFormat.Pptx, pptxOptions); } finally { if (pres != null) pres.dispose(); }
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Slides for Android via Java 24.4 Release Notes.