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 Node.js via Java 24.2

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 26.8MB
  • Date Added:
  • 19/2/2024

Description

It contains Aspose.Slides for Node.js via Java 24.2 release.

File Details

Convert Math Text to LaTeX

A new IMathParagraph.toLatex method is introduced in Aspose.Slides for Node.js via Java which allows seamless conversion of math text within your presentations to LaTeX format and offers extended compatibility. This code example showcases the method usage:

var pres = new aspose.slides.Presentation();
var slide = pres.getSlides().get_Item(0);
var shape = slide.getShapes().addMathShape(50, 50, 200, 200);
var mathParagraph = shape.getTextFrame().getParagraphs().get_Item(0).getPortions().get_Item(0).getMathParagraph();
mathParagraph.add(new aspose.slides.MathematicalText("a").join("+").join(new aspose.slides.MathematicalText("b").join("=").join(new aspose.slides.MathematicalText("c"))));
var mathLatex = mathParagraph.toLatex();

console.log(mathLatex);

Source*

Enhanced HTML5 Export with Comments

In the latest version of the Node.js PowerPoint API, we have added the Html5Options.NotesCommentsLayouting export option. It empowers you to export presentations with comments in HTML5, helping with a comprehensive output for various use cases. Please check out the following coding sample to learn how to use this export option.

var pres = new aspose.slides.Presentation("test.pptx");
var notesCommentsLayoutingOptions = new aspose.slides.NotesCommentsLayoutingOptions();
notesCommentsLayoutingOptions.setNotesPosition(aspose.slides.NotesPositions.BottomTruncated);
var html5Options = new aspose.slides.Html5Options();
html5Options.setNotesCommentsLayouting(notesCommentsLayoutingOptions);
html5Options.setOutputPath("test_pptx");
        
pres.save("index.html", aspose.slides.SaveFormat.Html5, html5Options);

Source*

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

 English