Convert OTP to ODP 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 OTP to ODP 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 OTP to ODP. Using Aspose.Slides for Node.js via .NET, any developer or application can convert OTP to ODP files with just a few lines of code.

As a modern document processing API, Aspose.Slides for Node.js via .NET exports OTP files to ODP file formats quickly. Aspose PowerPoint library allows you to convert OTP to ODPs and many other file formats

Convert OTP to ODP using JavaScript

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

JavaScript code for convert OTP into ODP


const fs = require('fs');
const asposeSlides = require('aspose.slides.via.net');
const { Presentation, SaveFormat } = asposeSlides;
var pres = new Presentation("welcome-to-powerpoint.otp");
try
{
    pres.save("output.odp", SaveFormat.Odp);
}
finally
{
    if (pres != null) pres.dispose();
}

How to convert OTP to ODP using Aspose.Slides for Node.js via .NET API

To convert OTP to ODP 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.

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

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

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

  4. Save result as ODP file.

Convert OTP To Other Supported Formats

You can also convert OTP and save to other file formats. See all supported formats below