Convert a PPTX Presentation to PDF

Converting a .pptx to PDF renders each slide — its theme graphics, text boxes, and pictures — as one fixed PDF page sized exactly to the slide (13.333 × 7.5 inches for a 16:9 deck), producing a deck anyone can open without PowerPoint. Animations flatten to each element's final state and videos become still poster frames. This page covers the export from PowerPoint, the free LibreOffice route including a batch command line, and the handout and notes layouts for printing.

Why there is no one-click converter on this page

Rendering .pptx slides requires a presentation engine that understands OOXML themes, placeholder inheritance, and DrawingML effects — none of which browsers expose to local web pages. The methods below use real engines and convert reliably.

Disclosure: this page contains affiliate placeholder links. If they were live, we could earn a commission at no extra cost to you.

AFFILIATE PLACEHOLDER: Recommended desktop PDF suite (placeholder link)

How to convert a PPTX to PDF (step by step)

Method 1 — PowerPoint's Save As PDF (best fidelity)

  1. Open the .pptx file in PowerPoint and check the deck plays without missing-font warnings.
  2. Go to File → Save As (or Save a Copy), pick a folder, and set the file type to PDF.
  3. Click More options → Options and choose Slides for one slide per page, or Handouts/Notes pages for print layouts; set a slide range if needed.
  4. Choose Standard quality for sharing on screen and click Save.

Method 2 — LibreOffice Impress (free, scriptable)

Impress opens .pptx decks and exports through File → Export As → Export as PDF, where the General tab also offers notes-pages output. For unattended batches:

soffice --headless --convert-to pdf --outdir ./out deck.pptx
soffice --headless --convert-to pdf --outdir ./out *.pptx

Fidelity is good for standard layouts; decks built on PowerPoint-specific theme effects (soft shadows on grouped SmartArt, some 3-D presets) render simplified.

Method 3 — Print to PDF for handouts

  1. Open File → Print, choose the Microsoft Print to PDF printer (or macOS's PDF button).
  2. Under layout, pick Handouts, 3 slides per page — the only layout that prints ruled note lines beside each slide.

Use this only when you specifically want paper-style handouts: the print path targets a paper size, so full-slide output gets white margins that Save As PDF avoids.

How it works

A .pptx is a ZIP of XML parts in the OOXML presentation schema: one slideN.xml per slide, plus slide layouts and a slide master that placeholders inherit from, and a theme part defining the color scheme, fonts, and effect styles. Unlike a word-processing file, a .pptx needs no pagination pass — each slide already has fixed dimensions recorded in EMUs (914,400 per inch), and every shape has an explicit position and size. That makes slide conversion structurally simpler and more reliable than document conversion.

The converter walks each slide's shape tree, resolves inherited placeholder formatting down through layout and master, renders DrawingML — gradients, theme effects, WordArt-style text warps — and emits the result as a PDF content stream on a page whose MediaBox equals the slide size. Text stays as real positioned glyphs with embedded font subsets, so it remains selectable and searchable; hyperlinks on shapes become PDF link annotations.

What cannot cross over is anything time-based. PDF pages have no timeline, so entrance and exit animations collapse to each element's final resting state, slide transitions vanish, and embedded media is reduced to its poster frame. Fonts fail the same way they do for documents: the deck stores font names only (unless "Embed fonts in the file" was ticked in PowerPoint's save options), so converting on a machine without the deck's brand font substitutes metrics and can push text out of its boxes.

Worked example: a 32-slide sales deck

Test file: q3-sales.pptx, 14.2 MB — 32 slides at 16:9, ten full-bleed JPEG photos, one embedded 48 MB MP4 on slide 7 (stored as a link plus poster frame), and two hidden appendix slides. PowerPoint's Save As PDF at Standard quality produced q3-sales.pdf, 5.8 MB with 30 pages: the hidden slides were skipped, the MP4 contributed only its 180 KB poster frame, and the photos were downsampled to 220 ppi. Each PDF page measured 960 × 540 pt (13.333 × 7.5 in). Re-exporting with Include hidden slides ticked gave 32 pages at 6.1 MB. The same deck through LibreOffice headless came out at 6.4 MB and matched visually apart from slide 12, where a theme gradient on a grouped shape rendered as a flat fill.

Frequently asked questions

Do animations and transitions survive in the PDF?

No, a PDF page is a static image of the slide's final state, so builds, transitions, and morphs are flattened away. Every animated element is rendered in its end position; if two elements animate in and out of the same spot, they will overlap in the PDF.

What happens to embedded videos when converting PPTX to PDF?

The video is replaced by its poster frame, a still image, and the audio track is dropped entirely. If the video must be watchable, share the .pptx or a link alongside the PDF.

Are hidden slides included in the exported PDF?

By default PowerPoint skips hidden slides on export, matching what an audience would see. To include them, open the Options dialog in the PDF save flow and tick Include hidden slides.

How do I export speaker notes together with the slides?

In the PDF Options dialog change Publish what from Slides to Notes pages, which prints each slide at the top of a portrait page with its notes below. LibreOffice Impress offers the same via the Export as PDF dialog's General tab.

Why does my PDF show a white strip around each slide?

Your slide size and the PDF page size disagree, usually a 16:9 deck exported through a print dialog that assumed Letter or A4 paper. Use Save As PDF rather than printing to PDF; the exporter sets each PDF page to exactly the slide dimensions, such as 13.333 by 7.5 inches.

Can I convert a PPTX to PDF without PowerPoint installed?

Yes, LibreOffice Impress opens .pptx files and exports PDF free, including from the command line with soffice --headless --convert-to pdf deck.pptx. Decks using PowerPoint-only theme effects or fonts you do not have installed may render with substituted fonts and simplified graphics.

Related tools