Skip to content

Convert PNG to PDF on Windows

Make a PDF from PNG images on Windows with Print to PDF. Combine mockups and scans into one document.

By Petr Samokhin

A sprint review leaves fourteen PNG screens in a folder. The stakeholder portal wants one PDF. Scanned forms saved as PNG from a phone camera app need the same merge step before upload. One PDF beats a zip of images for page order and single-field uploads. PNG keeps UI text sharp; merging alone does not reduce size. Resize sources or compress the PDF after merge when SharePoint or email caps megabytes.

Retina PNG mockups at 3000 px wide can produce a 30 MB PDF that Gmail rejects. Cap width before merge when the destination is screen-only.

When one PDF beats many PNG files

ScenarioWhy merge into PDF
SharePoint single fileOne upload
Print vendorFixed sequence
HR packetPage order locked
EmailOne attachment

Retina PNG mockups create heavy PDF files. Cap width before merge for screen review.

Reverse workflows: PDF to images on Windows and PDF to PNG on Windows . For JPEG scans, see JPG to PDF on Windows .

Mistake to avoidWhy
Full-res merge for screen reviewHuge PDF that upload rejects
Wrong page orderClient confusion on review
Skipping zoom check on textIllegible signatures go live

Each PNG carries full raster data. A folder of Retina mockups can produce a 28 MB PDF that SharePoint rejects.

Combine PNG with Print to PDF

Microsoft Print to PDF is the built-in way to convert PNG to PDF on Windows:

  1. Select PNG files in File Explorer.
  2. Right-click → Print.
  3. Choose Microsoft Print to PDF.
  4. Set order in the print dialog when available.
  5. Save the merged PDF.

Photos can print selected images to PDF with the same printer when the layout fits.

TipDetail
OrderSort filenames before print when order matters
Multi-selectShift-click range in Explorer
One-up layoutReduces accidental multi-image pages

Paint opens single PNG files for crop or rotate before print, not whole-folder merge. Fix orientation in Paint, save, then print the folder.

Use zero-padded names (page-01.png) so print order matches screen flow.

Batch tip: sort filenames in Explorer by name before multi-select so page order is correct in the print dialog.

Transparency and page size

PNG alpha may flatten to white in print preview. Flatten in Figma or your design tool when the background must be brand-colored.

GoalStep
Smaller PDFResize PNG in Paint first
Screen reviewLong edge near 1920 px
Sharp UI textAvoid aggressive JPEG intermediate

Resize batch with FFmpeg before print:

mkdir resized
Get-ChildItem *.png | ForEach-Object {
  ffmpeg -i $_.Name -vf scale=1920:-2 "resized\$($_.BaseName).png"
}

Print from resized\ when the merged PDF must stay under a size cap.

For PNG to JPEG when transparency is gone, see PNG to JPG on Windows .

Install FFmpeg with winget if it is not already on PATH:

winget install --id Gyan.FFmpeg -e

Oversized PNG mockups at 3000 px wide produce oversized PDF pages. Resize before print when reviewers view on screen only.

Shrink the PDF after merge

Re-open the PDF in Edge or your viewer and check text at full zoom. When still too large:

  1. Re-print from smaller PNG sources, or
  2. Compress with GetCompress (below), or
  3. See how to compress PDF on Windows .

Reduce File Size filters from Mac Preview do not exist on Windows the same way. Source resize plus GetCompress PDF presets is the reliable path.

Compare file size before email. A 28 MB merged PDF from full-res mockups needs a resize pass, not just retry upload.

SymptomFix
PDF still too largeResize PNG sources first
Text looks softAvoid crushing PDF twice
Wrong page orderRe-sort filenames and re-print

Spot-check one UI screen with small type after merge before batch upload.

Using GetCompress

GetCompress does not merge PNG into PDF. Merge with Print to PDF first. Then drop the PDF into GetCompress when portals reject size.

  • PDF compression presets with page preview.
  • Batch merged PDF files from recurring submissions.
  • Save presets per client portal limit.
  • Local processing for NDA mockups.
  • Folder monitoring on merge output directories.

Before merge, see how to compress images on Windows to cap PNG dimensions in the handoff folder.

GetCompress does not merge PNG into PDF. Use Print to PDF first, then GetCompress when the merged file still exceeds portal limits. When a portal rejects the first upload, tweak the PDF preset once rather than re-printing from full-res PNG unless the mockups changed.

Keep full-resolution PNG sources on project storage. Write compressed PDF deliverables to a separate folder so you can re-merge at higher quality if a client requests it later.

Buy GetCompress now for local media compression with reusable presets and no media upload.