HTML
JPG
PDF
XML
DOC
PDF
Convert PDF to PPTX in PHP SDK
Export PDF Documents to multiple formats including PPTX with Aspose.PDF Cloud PHP SDK
Get StartedHow to Convert PDF to PPTX Using PHP SDK
To convert PDF to PPTX, we’ll use Aspose.PDF Cloud PHP SDK This Cloud SDK assists PHP programmers in developing cloud-based PDF creator, annotator, editor, and converter apps using PHP programming language via Aspose.PDF REST API. Simply create an account at Aspose for Cloud and get your application information. Once you have the App SID & key, you are ready to give the Aspose.PDF Cloud PHP SDK.
Installation
composer install
Steps to Convert PDF to PPTX via PHP
Aspose.PDF Cloud PHP developers can easily load & convert PDF files to PPTX in just a few lines of code.
- Set Input File Name
- Set Output File Name
- Create Options Dictionary
- Call API Method
System Requirements
It is easy to get started with Aspose.PDF Cloud PHP SDK:
- CPU: 1GHz
- RAM: 512Mb
- Free space on disk: 20Mb
- Any OS Microsoft Windows, Mac OS, Linux x32/x64
- PHP v4.8 or higher
This sample code shows PDF to PPTX Cloud PHP SDK Conversion
$name = 'sample.pdf';
$this->uploadFile($name);
$folder = $this->tempFolder;
$response = $this->pdfApi->getPdfInStorageToPptx($name, null, null, $folder);
rename($response->getPathName(), $name . ".pptx");
Other Supported Conversions
You can also convert PDF into many other file formats including few listed below.
PDF TO WORD (Microsoft Word DOC & DOC)
PDF TO EXCEL (Microsoft Excel)
PDF TO JPEG (JPEG Image)
PDF TO PNG (Portable Network Graphics)
PDF TO PPTX (Open XML presentation Format)