DashConvert
4 min read

How to convert PNG to PDF (single-page, batch, or multi-page)

Converting one PNG is trivial. Combining 40 PNGs into a single ordered PDF for a submission or a photo album is where most tools fall over. Here's what actually works.

Three different jobs

Search results conflate them, but "PNG to PDF" means three different things:

  1. One PNG โ†’ one PDF. Simple. Any tool works.
  2. Many PNGs โ†’ one PDF, one page each. Common for photo albums, scanned documents that arrived as separate files, or "insert all my screenshots into a report."
  3. Many PNGs โ†’ one PDF, multiple images per page. Contact sheets, product catalogs, thumbnail overviews.

Different jobs, different tools.

The single-file case

Drop a PNG into PNG to PDF and get a one-page PDF back. Two settings matter:

  • Page size. A4 (Europe/most of the world) or Letter (US) is the safe default. Some tools also offer "match image size" โ€” the PDF page is exactly the image dimensions in points. Use this for screenshots that shouldn't have margins.
  • Orientation. Auto-detect (portrait vs landscape based on image) is what you want 99% of the time.

The batch case (one image per page)

For scanned pages that arrived as 40 separate PNGs โ€” the most common batch scenario โ€” you want Images to PDF rather than the single-image tool. Drop all the files at once, drag to reorder, generate one multi-page PDF.

Two things that trip people up:

  1. Sorting. File managers sort alphabetically by default, which means page1.png, page10.png, page11.png, page2.png โ€” not the natural order. Rename with zero-padded numbers (page01.png, page02.png) before importing, or manually reorder in the tool.
  2. Rotation. If some pages are sideways, rotate them before converting, or after with Rotate PDF. Rotating post-hoc is often faster if only a few pages are affected.

The contact-sheet case (multiple images per page)

Product catalogs, evidence exhibits, and photo overviews often want a grid โ€” 6 or 9 images per page with captions. Most general-purpose PNG-to-PDF tools don't do this well; you'd usually build the layout in Word/Google Docs and export.

For simple grids without captions, Images to PDF lets you set images-per-page (2, 4, or 6). For anything with captions or complex layouts, use a document editor first.

Screenshots specifically

Screenshots are the most common PNG source. Two workflow variants:

  • UI walkthrough (annotated tour): annotate each PNG first (arrows, callouts), then combine into one PDF via Images to PDF.
  • Evidence bundle (unmodified captures): drop the folder, generate the PDF, done. Include a text cover page with context, generated separately with Text to PDF and prepended via Merge PDF.

When to use JPG to PDF instead

If your source is photographs rather than screenshots or graphics, converting them as JPG first (JPG to PDF) produces a much smaller PDF at the same visual quality โ€” often 3-5x smaller. PNG's lossless compression is wasted on photos.

Keep PNG โ†’ PDF for:

  • Screenshots (crisp edges, text that must stay sharp).
  • Charts, diagrams, technical drawings.
  • Anything with transparency (though PDF conversion adds a white background โ€” transparency doesn't survive).
  • Logos and design mockups.

Use JPG โ†’ PDF for:

  • Camera photos of anything (documents, receipts, products, people).
  • Screenshots of photo-heavy pages.

File size expectations

  • A 1-page PDF from a 1200ร—800 PNG: typically 100-500 KB.
  • A 20-page PDF from screen-sized PNGs: typically 2-10 MB.
  • A 50-page PDF from high-DPI scans (300 DPI): can be 50-100 MB. Consider compressing.

If the output is huge, Compress PDF often halves it without visible loss by recompressing embedded images.

Common failure modes

  • "Pages are in the wrong order." File-manager alphabetical sort strikes. Rename with zero-padded numbers.
  • "Transparent background became white." Expected โ€” PDF pages have a color, and PNG transparency has to be resolved during embedding.
  • "File size is enormous." Your source PNGs are enormous. Either use JPG source or run Compress PDF on the output.
  • "Text in screenshots looks blurry." Your source PNG was compressed with lossy tools before conversion. PDF isn't the issue; the source is.

The privacy piece

Screenshots often contain UI in development, private data on screen, or things pulled from internal tools. Scanned documents converted from PNG scans are often forms, IDs, or receipts. PNG to PDF and Images to PDF both run in your browser โ€” the images and the resulting PDF never touch a server.

Tools mentioned in this post