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 x86

Download  Support Forum 

File Details

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

Description

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

File Details

Aspose.Slides for Python via .NET 24.2 allows developers to build feature-rich PowerPoint apps using the new features and enhancements that help streamline presentation creation and manipulation on Windows 32-bit systems.

Key Highlights

  • Convert Math Equations: Enhance your PowerPoint apps to seamlessly convert math equations within presentations to LaTeX format with the Python PowerPoint API.
  • Slide Notes in HTML5 Export: Using Aspose.Slides for Python via .NET 24.3 version, you can easily display slide notes inside the exported HTML5 documents on Windows x32.
  • Manage PPTX Documents: Effortlessly manage PowerPoint (PPTX) documents with this update which supports handling corrupted PPTX files better by throwing informative exceptions for optimized error management.

Other Improvements Added

  • Preview image for the OLE object getting replaced with the icon (SLIDESNET-44394).
  • Thickness of the connecting lines of the chart being thinner (SLIDESNET-44233).
  • The glow effect is barely visible in the thumbnail for the smaller glowRadius (SLIDESNET-44353).

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 x32. 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