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 .NET 24.2 Win x64

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 62.19MB
  • Date Added:
  • 20/2/2024

Description

It contains Aspose.Slides for Python via .NET 24.2 Windows x64 release.

File Details

Aspose.Slides for Python via .NET 24.2 empowers developers with a plethora of new features and enhancements to streamline presentation creation and manipulation on Windows 64-bit systems.

Key Highlights

  • Math Equation Conversion: Upgrade your PowerPoint conversion apps to effortlessly convert math equations within presentations to LaTeX format on Windows x64.
  • Enhanced HTML5 Export: Developers can display valuable slide notes within exported HTML5 documents with this update of the Python PowerPoint API, providing comprehensive context for viewers.
  • Robust PPTX Handling: Aspose.Slides for Python via .NET 24.2 handles corrupted PPTX files better, throwing informative exceptions for better error management.

Other Enhancements

  • The issue with the preview image for the OLE object getting replaced with the icon (SLIDESNET-44394).
  • An enhancement has been added for the glow effect barely visible in the thumbnail for the smaller glowRadius problem (SLIDESNET-44353).
  • We have improved the support for simultaneous animation after exporting videos (SLIDESNET-44315).
  • An improvement has been introduced to cater to the problem related to the thickness of the connecting lines of the chart being thinner (SLIDESNET-44233).

Converting Math Equations to LaTeX in Python

With the addition of the IMathParagraph.to_latex() method, it is easier for developers to convert the math equations to LaTeX format on Windows x64. The following Python coding sample illustrates how it is done:

import aspose.slides as slides
import aspose.slides.mathtext as math

with slides.Presentation() as pres:
    slide = pres.slides[0]
    shape = slide.shapes.add_math_shape(50, 50, 200, 200)
    math_paragraph = shape.text_frame.paragraphs[0].portions[0].math_paragraph
    math_paragraph.add(math.MathematicalText("a").join("+").join(math.MathematicalText("b").join("=").join(math.MathematicalText("c"))))
    math_latex = math_paragraph.to_latex()
    print(math_latex)

Source*

Convert PowerPoint to HTML5 with Comments

Developers can utilize the Html5Options.notes_comments_layouting parameter of HTML5 export options to export PowerPoint presentations with comments:

import aspose.slides as slides

with slides.Presentation("test.pptx") as pres:
    notes_comments_layouting = slides.export.NotesCommentsLayoutingOptions()
    notes_comments_layouting.notes_position = slides.export.NotesPositions.BOTTOM_TRUNCATED
    html5_options = slides.export.Html5Options()
    html5_options.output_path = "test_pptx"
    html5_options.notes_comments_layouting = notes_comments_layouting
    pres.save("index.html", slides.export.SaveFormat.HTML5, html5_options)

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.2 Release Notes.

 English