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 Python via Java 24.4

Download  Support Forum 

File Details

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

Description

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

File Details

Modern API Introduction

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:

  • IImage class represents the raster or vector image.
  • ImageFormat class represents the file format of the image.
  • Images - static class having methods to instantiate IImage.

ZIP64 Format Support

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:

pres = Presentation("demo.pptx");

pptxOptions = PptxOptions();
pptxOptions.setZip64Mode(Zip64Mode.Always);
pres.save("demo-zip64.pptx", SaveFormat.Pptx, pptxOptions);

pres.dispose();

Source*

Improved PDF Font Rendering

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:

pres = Presentation();

pdfOptions = PdfOptions();
pdfOptions.setRasterizeUnsupportedFontStyles(True);
pres.save("pres.pdf", SaveFormat.Pdf, pdfOptions);

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 Python via Java 24.4 Release Notes.

 English