← All guides

How to Convert PDF to PNG

pdfpngconversionimages

PNG is the better choice when you need to preserve sharpness and detail from a PDF — text stays crisp, lines stay sharp, no JPEG compression artifacts. Here’s how to convert.

The fastest way

Use PDF to Images:

  1. Open PDF to Images
  2. Drop in your PDF
  3. Choose output format: PNG
  4. Set resolution (150 DPI for screen, 300 DPI for print)
  5. Convert and download

Browser-based, no upload.

PNG vs JPG for this conversion

When to use PNG over JPG:

Choose PNG when:

  • Source PDF has text or fine line art (PNG keeps it crisp)
  • You need transparency (PNG supports it; JPG doesn’t)
  • The result will be edited further (PNG is lossless)
  • You’re producing graphics/logos/icons
  • Quality matters more than file size

Choose JPG when:

  • Source is photographic content
  • File size matters (JPG is much smaller for photos)
  • Universal compatibility with older tools

See our PNG vs JPG guide and JPEG Quality for the full comparison.

Resolution settings

PNG file sizes for a typical document page:

  • 96 DPI (web): ~200-500 KB per page
  • 150 DPI: ~500 KB - 1.5 MB
  • 300 DPI (print): ~1.5 - 5 MB

PNGs are larger than JPGs at the same resolution because PNG is lossless. For multi-page PDFs, expect 5-20× the file size of an equivalent JPG conversion.

Transparency

PNG output from PDF doesn’t automatically have transparency — the background renders as white by default. To make the background transparent:

  1. Convert to PNG (white background)
  2. Use image editing software (Photopea, GIMP, Photoshop) to remove white
  3. Or use AI background removal (Remove.bg) on the PNG

This works best for PDFs with logos or graphics on white backgrounds. For full pages of mixed content, transparency removal is harder.

Multi-page PDFs

Each page becomes a separate PNG file. For a 10-page PDF: 10 PNG files (or a zip).

To pick specific pages first:

  1. Use PDF Splitter to extract the pages you want
  2. Convert the result to PNG

Common use cases

Design assets from PDF guides: extract individual page elements at high quality.

Logo from PDF brand guidelines: convert relevant page to PNG; isolate logo in image editor.

Print-quality content captures: PNG at 300 DPI preserves print-ready quality.

Screenshots of PDF content for documentation: PNG keeps text crisp.

Graphic novels / illustrated PDFs: PNG preserves detail; JPG would degrade.

Other paths

Mac Preview:

  1. Open PDF
  2. File → Export → Format: PNG
  3. Save

Adobe Acrobat Pro: File → Export To → Image → PNG.

Photoshop: Open PDF (it asks which pages); save each page as PNG.

FFmpeg / pdftoppm command-line:

pdftoppm -png -r 150 input.pdf output

After converting

When file size is a concern

PNG is great for quality but large for sharing:

  • WebP (lossy or lossless) is smaller while still supporting transparency — see PNG to WebP
  • JPG is much smaller for photographic content
  • PNG-8 (256-color palette) is smaller than PNG-24 for simple graphics

For a balance: PNG → WebP conversion typically halves file size with no visible quality loss.

Privacy

PDF to Images runs locally — PDF is rendered in your browser, PNGs generated client-side, nothing uploaded.

TL;DR

  • PDF to PNG: PDF to Images → choose PNG → 150 DPI default
  • Choose PNG over JPG when quality matters more than file size, or you need transparency
  • One PNG per page for multi-page PDFs
  • After: PNG to WebP for smaller files with transparency intact
  • Mac alternative: Preview → Export → PNG
  • Command-line: pdftoppm -png -r 150 input.pdf output