GitHub license

Perl REST API to Process Presentation in Cloud

This repository contains Aspose.Slides Cloud SDK for Perl source code. This SDK allows you to process & manipulate PPT, PPTX, ODP, OTP using Aspose.slides Cloud REST APIs in your Perl 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

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 22.7

Enhancements in Version 22.6

Enhancements in Version 22.5

Enhancements in Version 22.4

Enhancements in Version 22.3

Enhancements in Version 22.2

Enhancements in Version 22.1

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 CPAN module (recommended).

Prerequisites

To use Aspose Slides Cloud SDK for Perl 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

cpan ASPOSE/AsposeSlidesCloud-SlidesApi-22.06.tar.gz

Sample usage

The example code below converts a PowerPoint document to PDF format using aspose_slides_cloud library:

	use File::Slurp;

	use AsposeSlidesCloud::Configuration;
	use AsposeSlidesCloud::SlidesApi;

	my $config = AsposeSlidesCloud::Configuration->new();
	$config->{app_sid} = "MyClientId";
	$config->{app_key} = "MyClientSecret";
	my $api = AsposeSlidesCloud::SlidesApi->new(config => $config);
	my $file = read_file("MyPresentation.pptx", { binmode => ':raw' });
	my %params = ('format' => 'pdf', 'document' => $file);
	my $result = $api->convert(%params);
	my $pdf = "MyPresentation.pdf";
	open my $fh, '>>', $pdf;
	binmode $fh;
	print $fh $result;
	close $fh;

| .NET | Java | PHP | Python | Ruby | Node.js | Android | Swift|Perl|Go| |---|---|---|---|---|---|---|--|--|--| | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub|GitHub |GitHub | | NuGet | Maven | Composer | PIP | GEM | NPM | Maven | Cocoapods|Meta Cpan | Go.Dev |

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