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(DLLs only)

Download  Support Forum 

File Details

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

Description

It contains Aspose.Slides for .NET 24.2 (DLLs-only) release.

File Details

Unleash the full potential of Aspose.Slides for .NET with the latest DLLs (version 24.2). This update equips you with powerful features and essential bug fixes.

Key Highlights

  • Enhanced Handling of Math Equations: Develop C# applications with robust capabilities for converting intricate math equations into LaTeX format, facilitating their seamless integration into scientific documents and reports.
  • Advanced HTML5 Export Functionality: With this update, you now have the ability to incorporate speaker notes into your exported HTML5 presentations, enriching the overall presentation experience.
  • Expanded Feature Set: This version of the C# PowerPoint API brings forth a variety of enhancements, including improved functionality for previewing OLE object images, optimized loading of corrupted presentation files, enhancements to glow effects, and more.
  • Rectified Issues: Users will experience improved presentation fidelity and stability, thanks to numerous bug fixes and updates incorporated into Aspose.Slides for .NET 24.2 DLLs-only package.

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