HTML JPG PDF SVG PPT
  Product Family
SVG

Convert PPTX to SVG in PHP

Powerful PowerPoint PHP library for converting PPTX to SVG

Convert PPTX to SVG in PHP

Convert PPTX files to SVG programmatically with Aspose.Slides for PHP via Java . The library can export every slide in a PowerPoint presentation as a separate SVG image with a few lines of PHP code.

Aspose.Slides exports a slide through its writeAsSvg method and a Java output stream. You can also try the PPTX-to-SVG conversion in your browser before integrating it into your application.

You can install the library from Composer using the following command:

Console/Terminal

composer require aspose/slides

How to Convert PPTX to SVG in PHP

These are the steps to convert a PPTX file to SVG using PHP.

  1. Load the PPTX file into a Presentation instance.

  2. Access each slide through a variable and create an output stream for its SVG file.

  3. Call writeAsSvg to export each slide to the corresponding stream.

System Requirements

Before running the PHP conversion sample, make sure that you have the following prerequisites.

  1. Install PHP 7 or later, add the PHP directory to the system PATH, and set allow_url_include to On in php.ini.
  2. Install JRE 8 and set the JAVA_HOME environment variable to the installed JRE directory.
  3. Install Apache Tomcat 8.0 as described in the installation guide .
 

This sample code shows PPTX-to-SVG conversion in PHP

$presentation = new Presentation("input.pptx");
try {
    $slideCount = java_values($presentation->getSlides()->size());
    for ($slideIndex = 0; $slideIndex < $slideCount; $slideIndex++) {
        $slide = $presentation->getSlides()->get_Item($slideIndex);
        $filePath = "slide_" . ($slideIndex + 1) . ".svg";
        $outputStream = new Java("java.io.FileOutputStream", $filePath);

        try {
            $slide->writeAsSvg($outputStream);
        } finally {
            $outputStream->close();
        }
    }
} finally {
    $presentation->dispose();
}
 

Save PPTX as SVG in PHP

Use the free app to see a demonstration of the PPTX-to-SVG conversion process.

Free App to Convert PPTX to SVG

Try our free Conversion app

Other Supported Conversions

You can also convert PPTX to many other file formats. See other supported conversions below:

PPTX TO BMP (Bitmap Image)
PPTX TO FODP (OpenDocument Flat XML Presentation)
PPTX TO GIF (Graphics Interchange Format)
PPTX TO HTML (Hypertext Markup Language)
PPTX TO JPG (JPEG Image)
PPTX TO ODP (OpenDocument Presentation Format)
PPTX TO OTP (OpenDocument Presentation Template)
PPTX TO PDF (Portable Document Format)
PPTX TO PNG (Portable Network Graphics)
PPTX TO POT (PowerPoint 97-2003 Template)
PPTX TO POTM (Macro-Enabled PowerPoint Template)
PPTX TO POTX (Open XML PowerPoint Template)
PPTX TO PPS (PowerPoint 97-2003 Slide Show)
PPTX TO PPSM (Macro-Enabled PowerPoint Slide Show)
PPTX TO PPSX (Open XML PowerPoint Slide Show)
PPTX TO PPT (PowerPoint 97-2003 Presentation)
PPTX TO PPTM (Macro-Enabled PowerPoint Presentation)
PPTX TO SWF (Small Web Format)
PPTX TO TIFF (Tagged Image File Format)
PPTX TO XPS (XML Paper Specification)