Convert FODP to SVG in Node.js

Aspose.Slides for Node.js via Java is a powerful and easy-to-use library that allows you to convert PowerPoint presentations to various formats in Node.js. 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 FODP to SVG in Node.js

Aspose.Slides for Node.js via Java is a powerful Node.js library for creating and manipulating presentation files. Moreover, it provides flexible ways to convert FODP to SVG. Using Aspose.Slides for Node.js via Java, any developer or application can convert FODP to SVG files with just a few lines of code.

As a modern document processing API, Aspose.Slides for Node.js exports FODP files to SVG file formats quickly. Aspose PowerPoint library allows you to convert FODP to SVGs and many other file formats

Convert FODP to SVG using Node.js

To convert the FODP to SVG, you will need to create Presentation from FODP file and save it as SVG.

Node.js code for convert FODP into SVG


var aspose = aspose || {};

aspose.slides = require("aspose.slides.via.java");

var pres = new aspose.slides.Presentation("welcome-to-powerpoint.fodp");
try
{
    var slide = pres.getSlides().get_Item(0);
    var svgStream = java.newInstanceSync("java.io.FileOutputStream", "image.svg");
    slide.writeAsSvg(svgStream);
    svgStream.close();
}
finally
{
    if (pres != null) pres.dispose();
}

How to convert FODP to SVG using using Aspose.Slides for Node.js via Java API

To convert FODP to SVG using Aspose.Slides for Node.js via Java, 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.

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

  2. Add a library reference (import the library) to your Node.js project.

  3. Open the source FODP files in Node.js.

  4. Save result as SVG file.