Presentation Converter for .NET

Convert presentation into various presentation formats.

Convert PowerPoint to Other Presentation Formats

In addition to exporting to image and document formats, Slidize.Plugins supports converting PowerPoint presentations to a variety of presentation file formats, such as PPTX, PPSX, ODP, and more. This is especially useful for users who need to transition presentations between different platforms or software environments. The ability to convert to OpenDocument Presentation (ODP) format ensures compatibility with open-source tools, while converting to macro-enabled formats like PPTM retains functionality for presentations with embedded macros.

  using Slidize;
                      
  // Convert to PPTX
  PresentationConverter.Process("presentation.ppt", "output.pptx", ConvertFormat.Pptx);

  // Convert to ODP
  PresentationConverter.Process("presentation.pptx", "output.odp", ConvertFormat.Odp);