Render PowerPoint presentations as HTML, PDF, and image files

GroupDocs.Viewer for Python allows you to render your presentations in HTML, PDF, PNG, and JPEG formats. You do not need to use Microsoft PowerPoint or other software to load and view presentations within your Python application (web or desktop).

Create a Viewer class instance to get started with the GroupDocs.Viewer API. Pass a presentation you want to view to the class constructor. You can load the presentation from a file or stream. Call one of the Viewer.view method overloads to convert the presentation to HTML, PDF, or image format. These methods allow you to render the entire presentation or specific slides.

View PowerPoint files online View demos and examples on GitHub

Supported Presentation file formats

GroupDocs.Viewer supports the following file formats:

Render presentations as HTML

Create an HtmlViewOptions.for_embedded_resources class instance and pass it to the Viewer.view method to convert a presentation file to HTML. The HtmlViewOptions class properties allow you to control the conversion process. For instance, you can embed all external resources in the generated HTML file, minify the output file, and optimize it for printing. Refer to the following documentation section for details: Rendering to HTML.

Create an HTML file with embedded resources

To save all elements of an HTML page (including text, graphics, and stylesheets) into a single file, call the HtmlViewOptions.for_embedded_resources method and specify the output file name.

with gv.Viewer("sample.pptx") as viewer:
    # Create an HTML file for each slide.
    # {0} is replaced with the current page number in the file name.
    options = gvo.HtmlViewOptions.for_embedded_resources("page_{0}.html")
    viewer.view(options)

The following image demonstrates the result:

Render a presentation file to HTML

Create an HTML file with external resources

If you want to store an HTML file and additional resource files (such as fonts, images, and stylesheets) separately, call the HtmlViewOptions.for_external_resources method and pass the following parameters:

  • The output file path format
  • The path format for the folder with external resources
  • The resource URL format
with gv.Viewer("sample.pptx") as viewer:
    # Create an HTML file for each slide.
    # Specify the HTML file names and location of external resources.
    # {0} and {1} are replaced with the current page number and resource name, respectively.
    viewOptions = gvo.HtmlViewOptions.for_external_resources("page_{0}.html", "page_{0}/resource_{0}_{1}", "page_{0}/resource_{0}_{1}")
    viewer.view(viewOptions)

The image below demonstrates the result. External resources are placed in a separate folder.

Place HTML resources in a separate folder

Render presentations as PDF

Create a PdfViewOptions class instance and pass it to the Viewer.view method to convert a presentation file to PDF. The PdfViewOptions class properties allow you to control the conversion process. For instance, you can protect the output PDF file, reorder its pages, and specify the quality of document images. Refer to the following documentation section for details: Rendering to PDF.

with gv.Viewer("sample.pptx") as viewer:
    viewOptions = gvo.PdfViewOptions("output.pdf")
    viewer.view(viewOptions)

The following image demonstrates the result:

Render a presentation file to PDF

Render presentations as PNG

Create a PngViewOptions class instance and pass it to the Viewer.view method to convert a presentation file to PNG. Use the PngViewOptions.height and PngViewOptions.width methods to specify the output image size in pixels.

with gv.Viewer("sample.pptx") as viewer:
    # Create a PNG image for each slide.
    # {0} is replaced with the current page number in the image name.
    viewOptions = gvo.PngViewOptions("output_{0}.png")
    viewer.view(viewOptions)

The following image demonstrates the result:

Render a presentation file to PNG

Render presentations as JPEG

Create a JpgViewOptions class instance and pass it to the Viewer.view method to convert a presentation file to JPEG. Use the JpgViewOptions.height and JpgViewOptions.width methods to specify the output image size in pixels.

with gv.Viewer("sample.pptx") as viewer:
    # Create a JPG image for each slide.
    # {0} is replaced with the current page number in the image name.
    viewOptions = gvo.JpgViewOptions("output_{0}.jpg")
    viewOptions.width = 950
    viewOptions.height = 550
    viewer.view(viewOptions)

Render hidden slides

If your presentation contains hidden slides, use the ViewOptions.render_hidden_pages method for a target view to display these slides in the output HTML, PDF, or image files.

The following code example uses this option to display hidden slides in the generated PDF file:

with gv.Viewer("sample.pptx") as viewer:
    viewOptions = gvo.PdfViewOptions("output.pdf")
    viewOptions.render_hidden_pages = True
    viewer.view(viewOptions)

Render comments

Use the ViewOptions.render_comments method for a target view to display comments in the output file when you convert your presentation to HTML, PDF, PNG, or JPEG format.

with gv.Viewer("sample.pptx") as viewer:
    viewOptions = gvo.PdfViewOptions("output.pdf")
    viewOptions.render_comments = True
    viewer.view(viewOptions)

The following image demonstrates the result:

Render a presentation with comments

Render speaker notes

A presentation file can contain speaker notes that help presenters recall important information during the presentation. Speaker notes appear in the Notes pane below each slide.

Speaker notes in Microsoft PowerPoint

Use the ViewOptions.render_notes method for a target view to display speaker notes in the output HTML, PDF, or image files.

The following code sample renders a presentation with speaker notes to PDF:

with gv.Viewer("sample.pptx") as viewer:
    viewOptions = gvo.PdfViewOptions("output.pdf")
    viewOptions.render_notes = True
    viewer.view(viewOptions)

The image below demonstrates the result.

Render a presentation with notes