Convert PDF to POT in Node.js

Convert PDF files to POT with Aspose.Slides for Node.js via Java.

Convert PDF to POT in Node.js

Aspose.Slides for Node.js via Java lets you import PDF files into a presentation and save the result as POT. With this Node.js API, you can convert PDF content without Adobe Acrobat.

Convert PDF to POT using Node.js

To convert PDF to POT, create a Presentation, import the source file with addFromPdf, and save the presentation with SaveFormat.Pot.

Node.js code to convert PDF to POT

const presentation = new aspose.slides.Presentation();
try {
    presentation.getSlides().removeAt(0);
    presentation.getSlides().addFromPdf("sourceFile.pdf");
    presentation.save("output.pot", aspose.slides.SaveFormat.Pot);
}
finally {
    presentation.dispose();
}

How to convert PDF to POT using Aspose.Slides for Node.js via Java API

To convert PDF to POT using Aspose.Slides for Node.js via Java, import the package, import the source file into a presentation, and export it in the required format.

  1. Install Aspose.Slides for Node.js via Java .

  2. Import the aspose.slides.via.java package in your Node.js project.

  3. Import the source PDF file with addFromPdf.

  4. Call the save method with the output file path and SaveFormat.Pot.