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 MacOS ARM64

Download  Support Forum 

File Details

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

Description

It contains Aspose.Slides for Python via .NET 24.2 macOS ARM64 release.

File Details

With Aspose.Slides for Python via .NET 24.2 release, Python developers can optimize their existing PowerPoint apps and develop new solutions for macOS ARM64/M1 systems.

Key Highlights

  • Math Equation Conversions: Utilize the Python PowerPoint API to effortlessly convert mathematical equations to LaTeX format within your presentations, facilitating seamless integration with LaTeX environments.
  • Manage Comments During HTML5 Export: Gain control over the appearance of comments and notes in HTML5 export with the introduction of the Html5Options.notes_comments_layouting property in Aspose.Slides for Python via .NET 24.3.
  • Error Handling Optimizations: This update provides more informative messages for PptxReadException, aiding in the troubleshooting of corrupted PPTX files.
  • OLE Object Preview Image: The problem of the preview image for the OLE object being replaced with the icon has been resolved in this update of the Python API.
  • Other Enhancements: Explore a range of enhancements in Aspose.Slides for .NET 24.2, such as improved rendering of glow effects in thumbnails, enhanced thickness of connecting lines in charts, and support for the latest features introduced in the software.

Learn to Convert Math Equations to LaTeX in macOS

With the addition of the IMathParagraph.to_latex() method, it is easier for developers to convert the math equations to LaTeX format on macOS ARM64/M1 systems. Please refer to the following Python coding sample to learn how to do it:

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*

Converting PowerPoint to HTML5 with Comments

Developers can utilize the Html5Options.notes_comments_layouting parameter of HTML5 export options to export presentations with comments, as shown in this Python code example:

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