Browse our Products

Aspose.Slides for .NET 24.2 Release Notes

KeySummaryCategoryRelated Documentation
SLIDESNET-44236Converting math equations to LaTeXFeature
SLIDESNET-43218Displaying slide notes in generated HTML5 documentFeature
SLIDESNET-44394Preview image for the OLE object is replaced with the iconEnhancementhttps://docs.aspose.com/slides/net/manage-ole/
SLIDESNET-44381Loading the corrupted PPTX file throws PptxReadExceptionEnhancementhttps://docs.aspose.com/slides/net/open-presentation/
SLIDESNET-44353Glow effect barely visible in thumbnail for glowRadius smaller than 4Enhancementhttps://docs.aspose.com/slides/net/shape-effect/#apply-glow-effect
SLIDESNET-44315Aspose.Slides does not support simultaneous animation after exporting videosEnhancementhttps://docs.aspose.com/slides/net/convert-powerpoint-to-video/#convert-powerpoint-to-video
SLIDESNET-44233The thickness of the connecting lines of the chart is thinnerEnhancement
SLIDESNET-44425PPTX to PDF: Conversion crashes in Docker containerBug
SLIDESNET-44413Space between words is missing when converting PPTX to PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-44412Converting the PPTX file with video throws ArgumentExceptionBug
SLIDESNET-44395Converting a presentation to PDF crashes on DebianBug
SLIDESNET-44386ArgumentOutOfRangeException when loading a PPT fileBughttps://docs.aspose.com/slides/net/convert-slide/
SLIDESNET-44382Drawing shapes missing and contents are not rendered properly in PPTX to HTML5Bug< https://docs.aspose.com/slides/net/export-to-html5/>
SLIDESNET-44376Math text is not rendered after being added to the presentationBughttps://docs.aspose.com/slides/net/convert-slide/#converting-slides-to-bitmap-and-saving-the-images-in-png
SLIDESNET-44375The null character is replaced by ‘)’ after savingBughttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-44367Hyperlink color is changed when converting PPTX to HTML5Bug< https://docs.aspose.com/slides/net/export-to-html5/>
SLIDESNET-44366Slide background is missing when converting PPTX to HTML5Bug< https://docs.aspose.com/slides/net/export-to-html5/>
SLIDESNET-44364IndexOutOfRangeException occurs when saving the PPT fileBughttps://docs.aspose.com/slides/net/convert-presentation/
SLIDESNET-44359PPT to PPTX conversion crashes in Docker containerBug
SLIDESNET-44347Embedded video causes export to HTML5 failBughttps://docs.aspose.com/slides/net/export-to-html5/
SLIDESNET-44329IndexOutOfRangeEception exception is thrown when saving a presentationBughttps://docs.aspose.com/slides/net/convert-presentation/
SLIDESNET-44327Shading gets removed from images when converted to PDF from PPTXBughttps://docs.aspose.com/slides/net/conversion-to-pdf/
SLIDESNET-44325Error when trying to export to HTML5Bughttps://docs.aspose.com/slides/net/export-to-html5/
SLIDESNET-44286Extra hyphen appears during PPTX to PDF conversionBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-44253wk: the chart in PowerPoint and chart converted to PNG image do not match - image position or column widthBughttps://docs.aspose.com/slides/net/powerpoint-charts/
SLIDESNET-44216Charts are displayed incorrectly when converting slide to PNGBughttps://docs.aspose.com/slides/net/3d-chart/
SLIDESNET-43235PPTX to HTML5 SolidFillColor is unavailable exceptionBughttps://docs.aspose.com/slides/net/export-to-html5/
SLIDESNET-43223Bullets with Wingdings symbols are displayed incorrectly when converting PPTX to HTML5Bug< https://docs.aspose.com/slides/net/export-to-html5/>
SLIDESNET-43007PPTX to HTML5 conversion throws InvalidOperationException: SolidFillColor is unavailableBughttps://docs.aspose.com/slides/net/export-to-html5/
SLIDESNET-42950Saving a presentation to PPT(X) throws exceptions after removing write protectionBughttps://docs.aspose.com/slides/cpp/password-protected-presentation/#removing-write-protection-from-a-presentation
SLIDESNET-41772ODP to PPTX - Bar Chart replaced by ?Embedded OLE Object? text boxBughttps://docs.aspose.com/slides/net/convert-odp-to-pptx/
SLIDESNET-39957Pptx not properly converted to PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-38577Improper Text rendering in exported PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/

Public API Changes

IMathParagraph.ToLatex method added

Added a new method IMathParagraph.ToLatex, which allows to convert math text to Latex format.

Example:

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);
}

The output is:

\[
a+b=c
\]

Html5Options.NotesCommentsLayouting

Added a new HTML5 export options parameter Html5Options.NotesCommentsLayouting that allows you to convert a presentation with comments .

Example:

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