HTML
JPG
PDF
SVG
PPT
SVG
Convert ODP to SVG in PHP
Export ODP presentation slides as SVG images with Aspose.Slides for PHP via Java
Convert ODP to SVG in PHP
Use Aspose.Slides for PHP via Java to load an ODP presentation and export each slide as a separate SVG image.
Iterate over the slides, create an output stream for each file, and call writeAsSvg. You can also test ODP conversion in your
browser
.
You can install the library from Composer using the following command:
Console/Terminal
composer require aspose/slides
This sample code shows ODP to SVG PHP Conversion
$presentation = new Presentation("input.odp");
try {
$slideCount = java_values($presentation->getSlides()->size());
for ($slideIndex = 0; $slideIndex < $slideCount; $slideIndex++) {
$slide = $presentation->getSlides()->get_Item($slideIndex);
$filePath = "slide_" . ($slideIndex + 1) . ".svg";
$fileStream = new Java("java.io.FileOutputStream", $filePath);
try {
$slide->writeAsSvg($fileStream);
} finally {
$fileStream->close();
}
}
} finally {
$presentation->dispose();
}
How to Convert ODP to SVG in PHP
These are the steps to convert an ODP file to SVG using PHP.
Load the ODP file into a
Presentationinstance.Access each slide through a variable and call
writeAsSvgwith its output stream.Each slide is written to a separate SVG file.
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 ODP as SVG in PHP
Use the free app to see a demonstration of the ODP-to-SVG conversion process.Free App to Convert ODP to SVG
Other Supported Conversions
You can also convert ODP to many other file formats. See other supported conversions below:
ODP TO BMP (Bitmap Image)
ODP TO FODP (Flat OpenDocument Presentation)
ODP TO GIF (Graphics Interchange Format)
ODP TO HTML (Hypertext Markup Language)
ODP TO JPG (JPEG Image)
ODP TO OTP (OpenDocument Presentation Template)
ODP TO PDF (Portable Document Format)
ODP TO PNG (Portable Network Graphics)
ODP TO POT (PowerPoint 97-2003 Template)
ODP TO POTM (PowerPoint Macro-Enabled Template)
ODP TO POTX (PowerPoint Open XML Template)
ODP TO PPS (PowerPoint 97-2003 Slide Show)
ODP TO PPSM (PowerPoint Macro-Enabled Slide Show)
ODP TO PPSX (PowerPoint Open XML Slide Show)
ODP TO PPT (PowerPoint 97-2003 Presentation)
ODP TO PPTM (PowerPoint Macro-Enabled Presentation)
ODP TO PPTX (PowerPoint Open XML Presentation)
ODP TO SWF (Small Web Format)
ODP TO TIFF (Tagged Image File Format)
ODP TO XPS (XML Paper Specification)