HTML
JPG
PDF
SVG
PPT
PNG
Convert PPS to PNG in PHP
Render PowerPoint PPS slide show slides as PNG images
Convert PPS to PNG in PHP
Aspose.Slides for PHP via Java can load a PowerPoint PPS slide show and render every slide as a PNG image without Microsoft PowerPoint.
Call getImage on each slide, then save the returned image with ImageFormat::Png. The example uses a scale factor of 2.0 for both dimensions.
You can install the library from Composer using the following command:
Console/Terminal
> composer require aspose/slides
How to Convert PPS to PNG in PHP
These are the steps to convert a PPS file to PNG using PHP.
Load the PPS file with the
Presentationclass.For each slide, call
getImageto render a PNG image.Save each image to a separate file with
ImageFormat::Png.
System Requirements
Before running the PHP conversion example, make sure that you have the following prerequisites.
- Install PHP 7 or later, add the PHP directory to the system
PATH, and setallow_url_includetoOnin thephp.inifile. - Install JRE 8 and set the
JAVA_HOMEenvironment variable to the installed JRE directory. - Install and configure Apache Tomcat with PHP/Java Bridge as described in the installation guide .
This sample code shows PPS to PNG PHP Conversion
$presentation = new Presentation("input.pps");
try {
$slideCount = java_values($presentation->getSlides()->size());
for ($slideIndex = 0; $slideIndex < $slideCount; $slideIndex++) {
$slide = $presentation->getSlides()->get_Item($slideIndex);
$slideImage = $slide->getImage(2.0, 2.0);
try {
$filePath = "slide_" . ($slideIndex + 1) . ".png";
$slideImage->save($filePath, ImageFormat::Png);
} finally {
$slideImage->dispose();
}
}
} finally {
$presentation->dispose();
}
Save PPS as PNG in PHP
Use the free app to see a demonstration of the PPS to PNG conversion process.Free App to Convert PPS to PNG
Other Supported Conversions
You can also convert PPS to many other file formats. See other supported conversions below:
PPS TO BMP (Bitmap Image)
PPS TO FODP (Flat OpenDocument Presentation)
PPS TO GIF (Graphics Interchange Format)
PPS TO HTML (Hypertext Markup Language)
PPS TO JPG (JPEG Image)
PPS TO ODP (OpenDocument Presentation)
PPS TO OTP (OpenDocument Presentation Template)
PPS TO PDF (Portable Document Format)
PPS TO POT (PowerPoint 97-2003 Template)
PPS TO POTM (PowerPoint Macro-Enabled Template)
PPS TO POTX (PowerPoint Open XML Template)
PPS TO PPSM (PowerPoint Macro-Enabled Slide Show)
PPS TO PPSX (PowerPoint Open XML Slide Show)
PPS TO PPT (PowerPoint 97-2003 Presentation)
PPS TO PPTM (PowerPoint Macro-Enabled Presentation)
PPS TO PPTX (PowerPoint Open XML Presentation)
PPS TO SVG (Scalable Vector Graphics)
PPS TO SWF (Small Web Format)
PPS TO TIFF (Tagged Image File Format)
PPS TO XPS (XML Paper Specification)