HTML
JPG
PDF
XML
PPSM
XPS
Convert PPSM to XPS in C#
Convert PPSM files to XPS in C# using server-side Aspose.Slides APIs.
Convert PPSM to XPS Using C#
Use Aspose.Slides for .NET to load a PPSM presentation and save it as an XPS file. Install the library from NuGet or run the following command in the Package Manager Console.
Package Manager Console Command
PM> Install-Package Aspose.Slides.NET
How to Convert PPSM to XPS via C#
.NET developers can load and convert PPSM files to XPS in just a few lines of code.
Load the PPSM file with a
Presentationobject.Call the
Savemethod with the output file path andSaveFormat.Xps.Use the output XPS file at the specified path.
System Requirements
Before running the .NET conversion sample code, make sure that your environment meets the following requirements.
- A supported operating system with .NET or Mono installed.
- A development environment such as Microsoft Visual Studio.
- Aspose.Slides for .NET referenced in your project.
This sample code shows PPSM to XPS C# conversion
using var presentation = new Presentation("template.ppsm");
presentation.Save("output.xps", SaveFormat.Xps);
Free App to Convert PPSM to XPS
Other Supported Conversions
You can also convert PPSM into many other file formats, including those listed below.
PPSM TO BMP (Bitmap Image)
PPSM TO EMF (Enhanced Metafile Format)
PPSM TO GIF (Graphics Interchange Format)
PPSM TO HTML (Hypertext Markup Language)
PPSM TO JPEG (JPEG Image)
PPSM TO ODP (OpenDocument Presentation Format)
PPSM TO OTP (OpenDocument Presentation Template)
PPSM TO PDF (Portable Document Format)
PPSM TO PNG (Portable Network Graphics)
PPSM TO POT (PowerPoint Template Files)
PPSM TO POTM (PowerPoint Macro-Enabled Template)
PPSM TO POTX (PowerPoint Open XML Template)
PPSM TO PPS (PowerPoint Slide Show)
PPSM TO PPSX (PowerPoint Slide Show)
PPSM TO PPT (PowerPoint 97-2003 Presentation)
PPSM TO PPTM (Macro-Enabled Presentation)
PPSM TO PPTX (Open XML Presentation Format)
PPSM TO SVG (Scalable Vector Graphics)
PPSM TO SWF (SWF Format)
PPSM TO TIFF (Tagged Image File Format)