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 .NET 24.1 equips Python developers to process and convert presentations more precisely within their PowerPoint applications targeting Windows 32-bit systems.
The newly added PdfImportOptions.detect_tables import option in version 24.1 of the Python API ensures that you can detect and import tables within the imported PDF document to your presentation slides. Please refer to the following Python coding example to learn more about its usage:
PdfImportOptions.detect_tables
import aspose.slides as slides import aspose.pyio as io with slides.Presentation() as pres, open("document.pdf", "rb") as stream: pdf_import_options = slides.importing.PdfImportOptions() pdf_import_options.detect_tables = True pres.slides.add_from_pdf(stream, pdf_import_options) pres.save("fromPdfDocument.pptx", slides.export.SaveFormat.PPTX)
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 .NET 24.1 Release Notes.