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 Linux

Download  Support Forum 

File Details

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

Description

It contains Aspose.Slides for Python via .NET 24.2 Linux release.

File Details

Enhance your PowerPoint processing solutions on Linux with the latest features and improved API functionality offered by Aspose.Slides for Python via .NET version 24.2.

Key Highlights

  • Math Equation to LaTeX Conversion: Integrate seamlessly with LaTeX workflows by converting math equations within presentations to LaTeX format using the latest version of the Python PowerPoint API.
  • Enhanced Comment Handling in HTML5 Export: Control the layout of comments and notes during HTML5 export by utilizing the new Html5Options.notes_comments_layouting property.
  • Improved Error Handling: Benefit from clearer error messages with PptxReadException for corrupted PPTX files in Aspose.Slides for Python via .NET 24.3 and streamline the debugging process.
  • Optimized Preview Image of OLE Object: In this Python API update, we have resolved the issue of the OLE object preview image getting replaced with an icon.
  • Other Enhancements: Discover numerous enhancements in Aspose.Slides for .NET 24.2 tailored for the Linux platform. These include enhanced rendering of glow effects in thumbnails, improved thickness of connecting lines in charts, and full support for the latest features introduced in the software.

Easily Convert Math Equations to LaTeX

With the addition of the IMathParagraph.to_latex() method, it is easier for developers to convert the math equations to LaTeX format on the Linux platform. 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 Html5Options.notes_comments_layouting to export presentations to HTML5 format with comments, as demonstrated 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