PNG to PDF: 6 Simple Ways to Convert and Combine Images on Mac

Six free ways to convert PNG to PDF — including a one-line terminal command and a Preview trick that turns a folder of PNGs into a single tidy PDF.

PNG to PDF: 6 Simple Ways to Convert and Combine Images on Mac

Converting PNG to PDF is one of those small tasks that sneaks up on you ten times a week. You took a screenshot for a bug report and the reviewer wants a PDF. A designer sent twenty PNG exports and your client expects a single document. An accountant wants a PNG receipt stapled into an expense sheet. Every one of these boils down to the same problem: how do you reliably convert PNG to PDF on a Mac without installing bloated software or uploading private images to a sketchy website?

The good news is that macOS already ships with everything you need. Preview, Finder, and a single terminal command can handle 99% of PNG to PDF conversions — including combining dozens of images into one tidy PDF. This guide covers six proven methods and the gotchas nobody mentions: transparency, color shifts, and how to keep the final PDF small enough to email.

Why Convert PNG to PDF?

PNG is the right format for screenshots, UI exports, icons, and anything with sharp edges or transparent backgrounds. PDF is the right format for everything else you might want to do with those images:

  • Combining multiple images into one file. Sharing 40 separate PNG screenshots is a chore. One PDF with 40 pages is instantly easier to send, review, and archive.
  • Printing. A PDF carries page size, orientation, and margin information that a PNG simply can't. Print a PDF and it comes out the same on every machine.
  • Signing and annotating. A PDF can be digitally signed, filled as a form, annotated, or highlighted. Contracts, NDAs, and receipts belong in PDFs.
  • Email-friendly. Inboxes handle a single PDF attachment better than a zip of loose images, and most email clients preview PDFs inline.
  • Archival and compliance. Legal, accounting, and HR teams usually require PDF — it's the lingua franca of "official" documents.

Once you know the destination, the right conversion method becomes obvious.

Method 1: macOS Preview (Free, Built-In)

Preview is the unsung hero of macOS. It opens almost every image and PDF format you'll encounter, and it can convert PNG to PDF in two different ways — one for single files, one for combining many.

Single PNG to PDF in Preview

  1. Double-click your PNG to open it in Preview.
  2. Go to File → Export as PDF...
  3. Pick a destination and click Save.

That's it. The resulting PDF is a single page sized to match the image. No quality loss, no re-compression — Preview wraps the PNG pixels into a PDF container.

Combine Multiple PNGs Into One PDF

This is where Preview earns its keep. If you've ever wondered how to combine PNG into PDF on a Mac, here's the trick:

  1. In Finder, select all the PNG files you want in the PDF. Hold Command and click each one, or drag-select a group.
  2. Right-click and choose Open With → Preview. All the images open in a single Preview window.
  3. In the left sidebar (View → Thumbnails if you don't see it), drag the thumbnails up and down to reorder pages.
  4. Go to File → Print (yes, Print, not Export).
  5. In the bottom-left of the print dialog, click the PDF dropdown and choose Save as PDF...
  6. Name your file, pick a location, and save.

The Print → Save as PDF trick is what separates Preview's "Export as PDF" (one image) from a true multi-image merge. For related workflows, see our guide on how to create PDF on Mac.

Method 2: Finder Quick Action — Create PDF

macOS has an even faster right-click path that most people don't know exists. It's been built into Finder since macOS Mojave.

  1. Select your PNG files in Finder (one or many).
  2. Right-click and hover over Quick Actions.
  3. Click Create PDF.

Finder instantly generates a PDF in the same folder as your source images. If you selected multiple PNGs, they're combined in whatever order Finder sorts them — so rename your files (e.g., 01-intro.png, 02-details.png) before running the action if order matters.

This is the fastest way to convert PNG to PDF if your files are already organized in Finder. No app launch, no menu hunting. A single image takes under two seconds; 50 PNGs are done in under ten.

The limitation: Quick Actions don't let you reorder pages, add headers, or set margins. It's a true "one-click" conversion. For anything more nuanced, reach for Preview or a dedicated app.

Method 3: Adobe Acrobat (macOS + Windows)

If you already pay for Adobe Acrobat, it's a capable PNG to PDF converter. Acrobat's advantage over Preview is control — page size, orientation, margins, compression profile, and OCR (which makes text inside screenshots searchable).

Steps: Open Acrobat → Tools → Create PDFSelect a File (for one PNG) or Multiple Files → Combine Files (for several). Add your PNGs, drag thumbnails to reorder, click Combine or Create.

OCR is Acrobat's killer feature: a scanned receipt or a page of code becomes searchable and copy-pastable. Preview can't do that. The downside is the subscription price. If you don't already use Acrobat, there's no reason to buy it just for conversion. See our best free PDF editor for Mac roundup and Adobe PDF alternatives guide.

Method 4: Free Online Converters

Google "PNG to PDF converter" and you'll find Smallpdf, iLovePDF, PDF2Go, Zamzar, Adobe's online tool, and dozens more. They all work the same way — upload, wait, download.

For a non-sensitive one-off, online converters are fine. For anything else, the trade-offs are real:

  • Privacy. Your PNGs go to a third-party server. For passport scans, NDAs, or bank statements — hard no.
  • File and count limits. Free tiers usually cap uploads at 5–50 MB and 20 files per batch.
  • Watermarks. Some free tiers stamp the output PDF.
  • Internet dependency. No Wi-Fi, no conversion.
  • Ads and dark patterns. Limit-reached nags and countdown timers push you to paid plans.

If you go this route, stick to reputable names and never upload anything you wouldn't email to a stranger. For sensitive work, Methods 1 and 5 keep everything local.

Method 5: Command Line (sips + ImageMagick)

If you're comfortable in Terminal, there's a one-line PNG to PDF conversion built right into macOS. It's called sips (Scriptable Image Processing System) and every Mac already has it.

Single PNG to PDF with sips

sips -s format pdf input.png --out output.pdf

Done. The -s format pdf flag tells sips to write a PDF. Run it on a whole folder with a shell loop:

for f in *.png; do
  sips -s format pdf "$f" --out "${f%.png}.pdf"
done

That gives you one PDF per PNG. What most people actually want is one combined PDF — and for that, sips alone won't cut it.

Combine PNGs Into One PDF with ImageMagick

ImageMagick is a free command-line image Swiss Army knife. Install it via Homebrew:

brew install imagemagick

Then combine a folder of PNGs into a single PDF with one command:

magick *.png output.pdf

Or if you want them in a specific order:

magick 01.png 02.png 03.png combined.pdf

ImageMagick places each image on its own page at its native resolution. For uniform page dimensions, add -page Letter to force every page to US Letter size.

Python Alternative: img2pdf

If you use Python, img2pdf is the most lossless PNG-to-PDF tool around. It wraps the PNG bytes directly inside a PDF — no re-encoding.

pip install img2pdf
img2pdf *.png -o output.pdf

The output matches the PNG pixel-for-pixel, usually at a smaller file size than ImageMagick produces.

Method 6: Batch Convert Many PNGs to One PDF

Batch conversion is where most people get stuck. You've got 60 PNG screenshots and need one PDF in the right order. Three reliable approaches:

Preview (GUI, 60 seconds): Select all the PNGs in Finder → Right-click → Open With → Preview → Thumbnail sidebar → Drag to reorder → File → Print → Save as PDF. Best when you need to reorder or remove images manually.

Finder Quick Action (1 click, no reordering): Select the PNGs → Right-click → Quick Actions → Create PDF. Fastest workflow, but Finder sorts by filename. Pre-rename if order matters.

Terminal (scripted, repeatable):

magick $(ls -v *.png) combined.pdf

The ls -v sort gives natural/numeric ordering (so 10.png comes after 9.png, not after 1.png). Wrap it in a shell script and you're done.

If the result is 200 MB, the next section is for you. See also our batch convert images deep dive.

Handling Transparency and Color

PNG's killer feature is transparency. PDF handles transparency too — but the two formats don't always agree on what "transparent" means.

What happens to a transparent PNG when you convert it to PDF?

  • Preview and sips preserve transparency as a transparent PDF background.
  • Print → Save as PDF in Preview flattens to white. Usually what you want for document-bound screenshots.
  • ImageMagick defaults to white unless you add -background transparent.
  • img2pdf is the most faithful — transparent PNGs stay transparent.

Color is the other gotcha. PNGs are sRGB by default; PDFs support sRGB, AdobeRGB, and CMYK. Converting a sRGB PNG for print can cause a subtle color shift if the PDF is later converted to CMYK. For on-screen use, you won't notice. For print work, check the color profile in Preview's Inspector.

For the reverse direction, see PDF to PNG and PDF to JPG. For shrinking PNGs before conversion, see our compress PNG guide.

Compress Your PDF With Compresto

Here's the dirty secret about PNG to PDF conversion: the output is almost always larger than it needs to be. A folder of 20 high-resolution screenshots easily becomes a 100 MB PDF — too big to email, awkward to upload, painful to archive.

PDFs don't re-compress images by default. Preview, Finder's Quick Action, sips, and ImageMagick all embed the PNG bytes as-is. PNG is a lossless format, so those screenshots take up a lot of space.

Compresto is a native macOS app built to fix exactly this. Drop your freshly converted PDF on Compresto and it shrinks the embedded images with hardware-accelerated compression — typically 60–90% smaller with no visible quality loss. Everything runs locally (nothing uploads to a server), it handles dozens of PDFs at once, and it's drag-and-drop simple.

Compresto also works on the source PNGs themselves — shrink them first, then convert, for an even smaller final PDF. Compresto is formerly CompressX, with faster engines, PDF support, and better batch handling. Free to try on macOS. For more, see compress PDF on Mac and reduce PDF size on Mac.

Frequently Asked Questions

Can I combine multiple PNGs into one PDF?

Yes. On macOS, the easiest way is to select all your PNGs in Finder, right-click, and pick Quick Actions → Create PDF. For control over order, open them in Preview, arrange thumbnails in the sidebar, and use File → Print → Save as PDF. On the command line, magick *.png output.pdf does the same in one command.

Will transparency be preserved when I convert PNG to PDF?

It depends on the tool. Preview's Export as PDF and sips preserve transparency. Preview's Print → Save as PDF and ImageMagick (by default) flatten to white. To keep transparency, use magick input.png -background transparent output.pdf or the Python tool img2pdf.

What's the best free PNG to PDF converter for Mac?

Preview, for most people. Already installed, handles single and multi-file conversion. For speed, Finder's Quick Action → Create PDF is one click. For power users, sips -s format pdf input.png --out output.pdf scripts cleanly, and magick *.png output.pdf combines batches.

How do I batch convert PNGs to PDFs?

Three options. Preview: open multiple PNGs, Print → Save as PDF. Finder: right-click → Quick Actions → Create PDF. Terminal: magick $(ls -v *.png) combined.pdf with natural sort order so 10.png follows 9.png.

How do I reduce PDF size after converting from PNG?

PDFs made from high-resolution PNGs are often 50–200 MB. Compresto for macOS reduces PDF size by 60–90% without visible quality loss, all locally. Preview's "Reduce File Size" Quartz filter works too, but it's aggressive. See also how to compress PDF on Mac.

Should I convert PNG to PDF or JPG to PDF?

Pick based on your source files. PNGs (screenshots, graphics, transparency) — convert PNG to PDF for crisp edges. Photos or large JPGs — see our JPG to PDF guide. The tools overlap; the process is almost identical.

Conclusion

Converting PNG to PDF on a Mac doesn't require a paid app, an online service, or a complicated workflow. Preview handles single files with one menu click, Finder's Quick Action handles batches with one right-click, and sips or ImageMagick handle anything scriptable. For sensitive images, keep it all local — never upload private screenshots or scans to a free online converter.

Once your PDF is ready, the next question is usually "can I make it smaller?" Compresto shrinks PDFs (and images, videos, and GIFs) by 60–90% with hardware-accelerated, fully local compression — purpose-built for the oversized, image-heavy PDFs that PNG-to-PDF workflows produce.

Download Compresto for macOS free. Whether you're converting one receipt or 200 screenshots, the whole pipeline — PNG to PDF to small PDF — takes less than a minute and never leaves your Mac. For related workflows, see convert WebP to PNG and HEIC to PNG.

Ready to compress your files? Join thousands of creators using Compresto ⚡