Browse our Products
Aspose.Slides for Node.js via Java 24.1 Release Notes
This page contains release notes for Aspose.Slides for Node.js via Java
Key | Summary | Category |
---|---|---|
SLIDESNODEJS-12 | Use Aspose.Slides for Java 24.1 features | Enhancement |
SLIDESNODEJS-50 | Failed to install aspose.slides.via.java | Investigation |
SLIDESNODEJS-51 | Npm install aspose.slides.via.java not working | Bug |
Public API Changes
PDF import detect tables option added
The PdfImportOptions.DetectTables option has been added to ensure that when importing PDF tables are automatically detected and imported as a table in Slide.
Below is an example of PDF import with tables detecting:
var pres = new aspose.slides.Presentation();
try {
var pdfImportOptions = new aspose.slides.PdfImportOptions();
pdfImportOptions.setDetectTables(true);
var stream = java.newInstanceSync("java.io.FileInputStream", "document.pdf");
pres.getSlides().addFromPdf(stream, pdfImportOptions);
pres.save("output.pptx", aspose.slides.SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}