HTML
JPG
PDF
SVG
PPT
ODP
Convert PPSM to ODP in PHP
Save PowerPoint PPSM slide shows as OpenDocument Presentations
Convert PPSM to ODP in PHP
Aspose.Slides for PHP via Java can load a PowerPoint PPSM slide show and save it as an OpenDocument Presentation without Microsoft PowerPoint.
Call save with SaveFormat::Odp to create the ODP file. The VBA project from the source PPSM file is not retained in the ODP output.
You can install the library from Composer using the following command:
Console/Terminal
> composer require aspose/slides
This sample code shows PPSM to ODP PHP Conversion
$presentation = new Presentation("input.ppsm");
try {
$presentation->save("output.odp", SaveFormat::Odp);
} finally {
$presentation->dispose();
}
How to Convert PPSM to ODP in PHP
These are the steps to convert a PPSM file to ODP using PHP.
Load the PPSM file with the
Presentationclass.Call
savewith the output file path andSaveFormat::Odp.The ODP file is written to the specified path.
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 .
Save PPSM as ODP in PHP
Use the free app to see a demonstration of the PPSM to ODP conversion process.Free App to Convert PPSM to ODP
Other Supported Conversions
You can also convert PPSM to many other file formats. See other supported conversions below:
PPSM TO BMP (Bitmap Image)
PPSM TO FODP (Flat OpenDocument Presentation)
PPSM TO GIF (Graphics Interchange Format)
PPSM TO HTML (Hypertext Markup Language)
PPSM TO JPG (JPEG Image)
PPSM TO OTP (OpenDocument Presentation Template)
PPSM TO PDF (Portable Document Format)
PPSM TO PNG (Portable Network Graphics)
PPSM TO POT (PowerPoint 97-2003 Template)
PPSM TO POTM (PowerPoint Macro-Enabled Template)
PPSM TO POTX (PowerPoint Open XML Template)
PPSM TO PPS (PowerPoint 97-2003 Slide Show)
PPSM TO PPSX (PowerPoint Open XML Slide Show)
PPSM TO PPT (PowerPoint 97-2003 Presentation)
PPSM TO PPTM (PowerPoint Macro-Enabled Presentation)
PPSM TO PPTX (PowerPoint Open XML Presentation)
PPSM TO SVG (Scalable Vector Graphics)
PPSM TO SWF (Small Web Format)
PPSM TO TIFF (Tagged Image File Format)
PPSM TO XPS (XML Paper Specification)