HTML JPG PDF SVG PPT
  Product Family
PPTX

Convert PPTX to JPG in PHP

Powerful PowerPoint PHP library for converting PPTX to JPG

Convert PPTX to JPG in PHP

Need to convert PPTX files to JPG programmatically? Using Aspose.Slides for PHP via Java any developer can convert PPTX to JPG format with just a few lines of PHP code.

As a modern presentation processing API, Aspose.Slides for PHP creates JPG from PPTX quickly. Test the quality of PPTX to JPG conversion right in your browser . Aspose PowerPoint PPTX library allows you to convert PPTX files to many popular formats.

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

Console/Terminal

> composer require aspose/slides 

How to Convert PPTX to JPG in PHP

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

  1. Load PPTX file with an instance of Presentation class

  2. Call the save method while specifying output file path & SaveFormat.JPG as parameters

  3. PPTX file will be saved at the specified path

System Requirements

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

  1. Install PHP 7, add path to PHP to system PATH variable and set allow_url_include to On in php.ini file.
  2. Install JRE 8. Set the JAVA_HOME enviroment variable as a path to the installed JRE location.
  3. Install Apache Tomcat 8.0 (see more ).
 

This sample code shows PPTX to JPG PHP Conversion


<?php
require_once("http://localhost:8080/JavaBridge/java/Java.inc");
require_once("lib/aspose.slides.php");
 
use aspose\slides\Presentation;
use aspose\slides\SaveFormat;
 
$pres = new Presentation("input.pptx");
try
{
    for ($i = 0; $i < java_values($pres->getSlides()->size()); $i++)
    {
        $bmp = $pres->getSlides()->get_Item($i)->getThumbnail(2, 2);
        $imageio = new Java("javax.imageio.ImageIO");
        $javafile = new Java("java.io.File", "slide_". $i .".jpg");
        $imageio->write($bmp, "JPEG", $javafile);
    }
}
finally
{
    if ($pres != null) $pres->dispose();
}
?>
 
  • Save PPTX as JPG in PHP

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

    Free App to Convert PPTX to JPG

    Try our free Video 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 (Graphical Interchange Format)
    PPTX TO HTML (Hyper Text Markup Language)
    PPTX TO ODP (OpenDocument Presentation Format)
    PPTX TO OTP (OpenDocument Standard Format)
    PPTX TO PDF (Portable Document Format)
    PPTX TO PNG (Portable Network Graphics)
    PPTX TO POT (Microsoft PowerPoint Template Files)
    PPTX TO POTM (Microsoft PowerPoint Template File)
    PPTX TO POTX (Microsoft PowerPoint Template Presentation)
    PPTX TO PPS (PowerPoint Slide Show)
    PPTX TO PPSM (Macro-enabled Slide Show)
    PPTX TO PPSX (PowerPoint Slide Show)
    PPTX TO PPT (Microsoft PowerPoint 97-2003)
    PPTX TO PPTM (Macro-enabled Presentation File)
    PPTX TO SVG (Scalable Vector Graphics)
    PPTX TO SWF (SWF Format)
    PPTX TO TIFF (Tagged Image Format)
    PPTX TO XPS (XML Paper Specifications)