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

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 114.74MB
  • Date Added:
  • 16/2/2024

Description

It contains Aspose.Slides for .NET 24.2 release (MSI).

File Details

C# developers can upgrade to Aspose.Slides for .NET 24.2 (MSI) and effortlessly process PowerPoint presentations. This update introduces exciting new features alongside valuable bug fixes.

Key Highlights

  • Rich Math Equation Handling: Build C# apps that enable effortless conversion of complex math equations to LaTeX format for seamless integration with scientific documents and reports.
  • Improved HTML5 Export: You can include speaker notes within your exported HTML5 presentations for a more comprehensive presentation experience.
  • Feature Enhancements: We have included multiple feature enhancements in this version of the C# PowerPoint API related to OLE object image preview, optimized corrupted presentation file loading, glow effect improvements, and more.
  • Bug Fixes: Users can benefit from numerous bug fixes and other updates for improved presentation fidelity and stability with Aspose.Slides for .NET 24.2.

Converting Math Formulas to LaTex

This C# code example demonstrates the conversion from math equations to LaTex format using the newly added IMathParagraph.ToLatex method:

using (var pres = new Presentation())
{
    var slide = pres.Slides[0];
    IAutoShape shape = slide.Shapes.AddMathShape(50, 50, 200, 200);
    IMathParagraph mathParagraph = (shape.TextFrame.Paragraphs[0].Portions[0] as MathPortion).MathParagraph;
    mathParagraph.Add(new MathematicalText("a").Join("+").Join(new MathematicalText("b").Join("=").Join(new MathematicalText("c"))));
    string mathLatex = mathParagraph.ToLatex();
    
    Console.WriteLine(mathLatex);
}

Source*

Convert PowerPoint to HTML5 with Comments

You can upgrade your PowerPoint conversion apps with the ability to add comments while converting from PowerPoint to HTML5 using Html5Options.NotesCommentsLayouting. The following code snippet showcases how it is done:

using (Presentation pres = new Presentation("test.pptx"))
{
    pres.Save("index.html", SaveFormat.Html5, new Html5Options()
    {
        OutputPath = "test_pptx",
        NotesCommentsLayouting = new NotesCommentsLayoutingOptions()
            { NotesPosition = NotesPositions.BottomTruncated }
    });
}

Source*

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Slides for .NET 24.2 Release Notes.

 English