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.
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
| Scenario | Why merge into PDF |
|---|---|
| SharePoint single file | One upload |
| Print vendor | Fixed sequence |
| HR packet | Page order locked |
| One 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 avoid | Why |
|---|---|
| Full-res merge for screen review | Huge PDF that upload rejects |
| Wrong page order | Client confusion on review |
| Skipping zoom check on text | Illegible 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:
- Select PNG files in File Explorer.
- Right-click → Print.
- Choose Microsoft Print to PDF.
- Set order in the print dialog when available.
- Save the merged PDF.
Photos can print selected images to PDF with the same printer when the layout fits.
| Tip | Detail |
|---|---|
| Order | Sort filenames before print when order matters |
| Multi-select | Shift-click range in Explorer |
| One-up layout | Reduces 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.
| Goal | Step |
|---|---|
| Smaller PDF | Resize PNG in Paint first |
| Screen review | Long edge near 1920 px |
| Sharp UI text | Avoid 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:
- Re-print from smaller PNG sources, or
- Compress with GetCompress (below), or
- 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.
| Symptom | Fix |
|---|---|
| PDF still too large | Resize PNG sources first |
| Text looks soft | Avoid crushing PDF twice |
| Wrong page order | Re-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.
- Convert JPG to PDF on WindowsMake a PDF from JPG images on Windows with Print to PDF. Combine scans and photos into one document.
- Export PDF to Images on WindowsTurn PDF pages into PNG or JPEG on Windows with pdftoppm. Batch page export for slides and scans.
- How to Compress PDF on WindowsCompress PDF on Windows with PowerPoint re-export. Batch PDF compression with GetCompress for folders of decks and scans.
- Convert PDF to JPG on WindowsExport PDF pages as JPEG on Windows with pdftoppm. Batch slide decks for CMS upload.
Buy GetCompress now for local media compression with reusable presets and no media upload.