Convert PPS to SVG in JavaScript
Aspose.Slides for Node.js via .NET is a powerful and easy-to-use library that allows you to convert PowerPoint presentations to various formats in JavaScript. It supports all presentation elements and formats and provides a rich API to access and modify them. It also allows you to export your slides to various formats for further processing or sharing.
Convert PPS to SVG in Node.js
Aspose.Slides for Node.js via .NET is a powerful Node.js library for creating and manipulating presentation files. Moreover, it provides flexible ways to convert PPS to SVG. Using Aspose.Slides for Node.js via .NET, any developer or application can convert PPS to SVG files with just a few lines of code.
As a modern document processing API, Aspose.Slides for Node.js via .NET exports PPS files to SVG file formats quickly. Aspose PowerPoint library allows you to convert PPS to SVGs and many other file formats
Convert PPS to SVG using JavaScript
To convert the PPS to SVG, you will need to create Presentation from PPS file and save it as SVG.
JavaScript code for convert PPS into SVG
const fs = require('fs');
const asposeSlides = require('aspose.slides.via.net');
const { Presentation, SaveFormat } = asposeSlides;
var pres = new Presentation("welcome-to-powerpoint.pps");
try
{
for (let i = 0; i < pres.slides.length; i++) {
var slideByteArray = pres.slides.get(i).getAsSvg();
fs.writeFile('slide" + i + ".svg', Buffer.from(slideByteArray), (err) => {
if (err)
console.error(err);
});
}
}
finally
{
if (pres != null) pres.dispose();
}
How to convert PPS to SVG using Aspose.Slides for Node.js via .NET API
To convert PPS to SVG using Aspose.Slides for Node.js via .NET, you need to import the package in your JavaScript file and create an instance of the Presentation class. The Presentation class represents a PowerPoint document and provides methods to access and manipulate its elements.
Install Aspose.Slides for Node.js via .NET .
Add a library reference (import the library) to your Node.js project.
Open the source PPS files in Node.js.
Save result as SVG file.
Convert PPS To Other Supported Formats
You can also convert PPS and save to other file formats. See all supported formats below