HTML JPG PDF SVG PPT
Product Family
XPS

Convert ODP to XPS in PHP

Export ODP presentations as XPS documents with Aspose.Slides for PHP via Java

Convert ODP to XPS in PHP

Need to convert ODP files to XPS programmatically? With Aspose.Slides for PHP via Java , you can export an ODP presentation as an XPS document with a few lines of PHP code.

Aspose.Slides provides a straightforward presentation-processing API for ODP-to-XPS conversion. You can also test presentation conversions in your browser or export ODP files to many other supported formats.

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

Console/Terminal

composer require aspose/slides

This sample code shows ODP to XPS PHP Conversion

$presentation = new Presentation("input.odp");
try {
    $presentation->save("output.xps", SaveFormat::Xps);
} finally {
    $presentation->dispose();
}
 

How to Convert ODP to XPS in PHP

These are the steps to convert an ODP file to XPS using PHP.

  1. Load the ODP file into a Presentation instance.

  2. Call save with the output file path and SaveFormat::Xps.

  3. The presentation is written to the specified XPS file.

System Requirements

Before running the PHP conversion example, 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 the php.ini file.
  2. Install JRE 8 and set the JAVA_HOME environment variable to the installed JRE directory.
  3. Install and configure Apache Tomcat with PHP/Java Bridge as described in the installation guide .

Save ODP as XPS in PHP

Use the free app to see a demonstration of the ODP-to-XPS conversion process.

Free App to Convert ODP to XPS

Try our free Conversion app

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 SVG (Scalable Vector Graphics)
ODP TO SWF (Small Web Format)
ODP TO TIFF (Tagged Image File Format)