HTML JPG PDF SVG PPT
  Product Family
PPTX

Convert PPSX to XPS in Python

Powerful PowerPoint Python library for converting PPSX to XPS

Convert PPSX to XPS in Python

Need to convert PPSX files to XPS programmatically? Using Aspose.Slides for Python via .NET any developer can convert PPSX to XPS format with just a few lines of Python code.

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

You can install the library from PyPI using the following pip command:

Console/Terminal

> pip install aspose.slides

How to Convert PPSX to XPS in Python

These are the steps to convert a PPSX file to XPS using Python.

  1. Load PPSX file with an instance of Presentation class

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

  3. PPSX file will be saved at the specified path

System Requirements

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

  • Microsoft Windows or Linux based OS (see more ).
  • Python 3.5 or later
  • Aspose.Slides for Python referenced in your project.
 

This sample code shows PPSX to XPS Python Conversion


import aspose.slides as slides
import aspose.pydrawing as drawing

with slides.Presentation("presentation.ppsx") as presentation:
    presentation.save("presentation.xps", slides.export.SaveFormat.XPS)
 
  • Save PPSX as XPS in Python

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

    Other Supported Conversions

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

    PPSX TO BMP (Bitmap Image)
    PPSX TO EMF (Enhanced Metafile Format)
    PPSX TO FODP (OpenDocument Flat XML Presentation)
    PPSX TO GIF (Graphical Interchange Format)
    PPSX TO HTML (Hyper Text Markup Language)
    PPSX TO JPG (JPEG Image)
    PPSX TO ODP (OpenDocument Presentation Format)
    PPSX TO OTP (OpenDocument Standard Format)
    PPSX TO PDF (Portable Document Format)
    PPSX TO PNG (Portable Network Graphics)
    PPSX TO POT (Microsoft PowerPoint Template Files)
    PPSX TO POTM (Microsoft PowerPoint Template File)
    PPSX TO POTX (Microsoft PowerPoint Template Presentation)
    PPSX TO PPS (PowerPoint Slide Show)
    PPSX TO PPSM (Macro-enabled Slide Show)
    PPSX TO PPT (Microsoft PowerPoint 97-2003)
    PPSX TO PPTM (Macro-enabled Presentation File)
    PPSX TO PPTX (Open XML presentation Format)
    PPSX TO SVG (Scalable Vector Graphics)
    PPSX TO SWF (SWF Format)
    PPSX TO TIFF (Tagged Image Format)