Browse our Products

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.

 

Aspose.Slides for Android via Java 24.4

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 31.91MB
  • Date Added:
  • 18/4/2024

Description

It contains Aspose.Slides for Android via Java 24.4 release.

File Details

Modern API Adoption

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.

Simplified Image Handling

The deprecated methods are replaced with their modern counterparts for a smoother development workflow using the latest PowerPoint file manipulation API release.

Empowered PDF Output

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*

ZIP64 Presentation Support

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();
}

Source*

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.

 English