Socket
Socket
Sign inDemoInstall

asposeslidescloud

Package Overview
Dependencies
9
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    asposeslidescloud

Aspose.Slides Cloud SDK for Node.js


Version published
Weekly downloads
144
decreased by-53.7%
Maintainers
1
Install size
3.53 MB
Created
Weekly downloads
 

Readme

Source

npm npm bundle size node-current npm type definitions GitHub license

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 Powerpoint to PDF, Powerpoint to Word, Powerpoint to JPG, Powerpoint to PNG, PDF to Powerpoint, JPG to Powerpoint, and PNG to Powerpoint 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 Other: PDF, PDF/A

Save Presentation As

Fixed Layout: XPS Images: JPEG, PNG, BMP, TIFF, GIF, SVG Web: HTML/HTML5 Other: MPEG4, SWF (export whole presentations)

Enhancements in Version 24.3

  • Added Markdown (Md) to the list of allowed export formats.
  • Added DeletePictureCroppedAreas method to delete cropped areas of pictures.
  • Added SlidesLayoutOptions property to PdfExportOptions, HtmlExportOptions, TiffExportOptions and ImageExportOptions classes. You can use it to specify handout or notes/comments layouting options.
  • Added AnimateTextType enum property to Effect class.
  • Added NotesCommentsLayouting property to Html5ExportOptions class.
  • Added BwConversionMode property to TiffExportOptions class.
  • Added EmbedImages boolean property to Html5ExportOptions class.
  • Added ShowMediaControls boolean property to SlideShowProperties class.
  • Added IsDecorative boolean property to ShapeBase class.

Enhancements in Version 24.2

  • Added GetCommentAuthors method to get list of comment authors.

Enhancements in Version 24.1

  • Added GetAvailableFonts method to get list of installed system & custom fonts.

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.

.NETJavaPHPPythonRubyNode.jsAndroidSwiftPerlGo
GitHubGitHubGitHubGitHubGitHubGitHubGitHubGitHubGitHubGitHub
NuGetMavenComposerPIPGEMNPMMavenCocoapodsMeta CpanGo.Dev

Product Page | Documentation | API Reference | Code Samples | Blog | Free Support | Free Trial

Keywords

FAQs

Last updated on 03 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc