Nodejs REST API to Process Presentation in Cloud
This repository contains Aspose.Slides Cloud SDK for Nodejs source code. This SDK allows you to process & manipulate PPT, PPTX, ODP, OTP using Aspose.slides Cloud REST APIs in your Nodejs applications.
You may want to check out Aspose free PPT to PDF, PPT to Word, and PPT to JPG converters because they are live implementations of popular conversion processes.
Presentation Processing Features
- Fetch presentation images in any of the supported file formats.
- Copy the layout side or clone the master slide from the source presentation.
- Process slides shapes, slides notes, placeholders, colors & font theme info.
- Programmatically create a presentation from HTML & export it to various formats.
- Merge multiple presentations or split the single presentation into multiple ones.
- Extract and replace text from a specific slide or an entire presentation.
Read & Write Presentation Formats
Microsoft PowerPoint: PPT, PPTX, PPS, PPSX, PPTM, PPSM, POTX, POTM
OpenOffice: ODP, OTP, FODP
Save Presentation As
Fixed Layout: PDF, PDF/A, XPS
Images: JPEG, PNG, BMP, TIFF, SVG
Web: HTML/HTML5
Other: SWF (export whole presentations)
Enhancements in Version 22.1
- New MathParagraph property of Portion class allows to get and set math formulas. A set of MathElement subclasses allows to specify complex mathematical expressions.
- New DownloadPortionAsMathMl and SavePortionAsMathMl methods allow to export math formulas to MathML format.
- New HyperlinkClick and HyperlinkMouseOver methods of ShapeBase and Portion classes enable creation and manipulating hyperlinks for shapes and portions.
- New methods GetShapeGeometryPath and SetShapeGeometryPath can be used to get or set geometry paths for shapes. You can use lines, arcs and curves to specify custom shape boundaries.
- New AlignSubshapes method enables aligning shapes within a shape group.
- New PlayAcrossSlides and RewindAudio properties are added to AudioFrame class.
- Added InClickSequence to the list of allowable values for AudioPlayModePreset and AudioPlayModePreset enum types.
Licensing
All Aspose.Slides Cloud SDKs are licensed under MIT License.
How to use the SDK?
The complete source code is available in this repository folder. You can either directly use it in your project via source code or get NPM package (recommended).
Prerequisites
To use Aspose Slides Cloud NodeJS SDK you need to register an account with Aspose Cloud and lookup/create App Key and SID at Cloud Dashboard. There is free quota available. For more details, see Aspose Cloud Pricing.
Installation
From the command line:
npm install asposeslidescloud --save
Sample usage
The example code below converts a PowerPoint document to PDF format using asposeslidescloud library:
const api = require("asposeslidescloud");
const fs = require('fs');
const slidesApi = new api.SlidesApi("MyClientId", "MyClientSecret");
slidesApi.convert(fs.createReadStream("MyPresentation.pptx"), 'pdf').then((response) => {
fs.writeFile("MyPresentation.pdf", response.body, (err) => {
if (err) throw err;
});
});
You can check more Examples of using the SDK.
Aspose.Slides Cloud SDKs in Popular Languages
Product Page | Documentation | API Reference | Code Samples | Blog | Free Support | Free Trial