JPG to PDF: 7 Free Ways to Convert Images on Mac and Windows
Seven proven ways to convert JPG to PDF — from the built-in macOS Preview trick most people miss to batch workflows that handle hundreds of images.
JPG to PDF: 7 Free Ways to Convert Images on Mac and Windows
If someone asked you to send a signed form, scan a receipt, or email a stack of photos as a single document, you've probably needed to convert JPG to PDF. It sounds trivial — and it is, once you know where to look. The problem is that most guides point you at a random online converter and tell you to upload your file to a stranger's server.
You don't need to do that. Every Mac already has two free, built-in ways to convert JPG to PDF without installing anything. Windows has one. And if you need to combine twenty JPGs into a single PDF, there are workflows that handle the whole batch in one click. This guide walks through the seven methods worth knowing in 2026 and how to shrink the resulting PDF down to a size you can actually email.
Why Convert JPG to PDF?
JPG is a great format for photos but a lousy format for documents. The moment you need to send an image to someone who expects a "file," PDF becomes the right wrapper. A few common reasons people convert JPG to PDF:
- Signing forms. Someone sends a PDF contract, you sign on paper, snap a picture — now you need to return it as a PDF, not a JPG.
- Emailing scanned receipts. Expense reports almost universally want PDFs. Your iPhone captures receipts as JPGs.
- Combining multiple images into one file. Twelve JPGs of a handwritten notebook become one 12-page PDF.
- Printing cleanly. PDFs print with predictable margins and page sizes. Raw JPGs print at whatever size the image happens to be.
- Archiving. PDFs are more stable for long-term storage than loose images.
- Sharing professionally. Clients, schools, and government portals expect PDFs. A PDF looks like a document; a JPG looks like a snapshot.
Need the reverse? See our guide on PDF to JPG conversion or PDF to PNG.
Method 1: macOS Preview (Built-In, Free)
If you're on a Mac, Preview is already the best JPG to PDF converter on your machine. It's free, native, and handles both single images and multi-image combinations. Most people don't realize Preview can do this at all.
Convert a single JPG to PDF
- Double-click your JPG to open it in Preview.
- Go to File → Export as PDF…
- Choose a name and destination, then click Save.
That's it. No upload, no third-party tool, no watermark. The output is a single-page PDF with the image at its native resolution.
Combine multiple JPGs into one PDF
This is where Preview really shines — and where most online tutorials get it wrong.
- In Finder, select all the JPGs you want to combine. Click the first one, then shift-click the last (or cmd-click to pick specific files).
- Right-click and choose Open With → Preview. All the images open in a single Preview window.
- In Preview's sidebar (enable it with View → Thumbnails if it's hidden), drag the thumbnails to reorder pages.
- Select all thumbnails with cmd-A, then go to File → Print.
- In the Print dialog, click the PDF dropdown in the bottom-left corner and choose Save as PDF.
- Name your file and save.
You now have a single multi-page PDF with all your images in the order you arranged them. This works for 5 images or 500. For more Mac-specific PDF workflows, see our guide to creating PDFs on Mac.
Method 2: Finder Quick Actions / Print to PDF
macOS has an even faster option for JPG to PDF conversion that most people miss entirely: right-click in Finder.
- In Finder, select one or more JPG files.
- Right-click and hover over Quick Actions.
- Click Create PDF.
Finder immediately generates a PDF next to your selected files. If you picked multiple JPGs, they're combined into a single PDF in alphabetical order (rename them 01-receipt.jpg, 02-receipt.jpg etc. beforehand if you need a specific order).
Quick Actions is the fastest method on macOS — no apps to open, no dialogs to click through. It's the answer to "convert JPG to PDF without internet" for 90% of use cases.
On Windows, the equivalent is built-in Print to PDF:
- Right-click your JPG and choose Print.
- In the Printer dropdown, select Microsoft Print to PDF.
- Click Print, then name your output file.
For multiple JPGs, select them all first, right-click, and print the whole selection in one go. Windows will combine them into a single PDF automatically.
Method 3: Adobe Acrobat (Mac and Windows)
Adobe Acrobat is the reference implementation of PDF — its JPG to PDF converter is polished but overkill for most people. Acrobat is worth it if you already pay for Creative Cloud or need OCR, encryption, or advanced page layout.
In Acrobat:
- Open Acrobat and click Tools → Create PDF.
- Pick Single File or Multiple Files.
- Drag your JPGs in. Reorder thumbnails if needed.
- Click Create (or Combine) and save.
Acrobat's advantage is control: set specific page sizes, add headers during conversion, apply OCR so the PDF is searchable, encrypt with a password. For quick conversion, Methods 1 and 2 are faster. For free alternatives, see our roundup of the best free PDF editor for Mac and Adobe PDF alternatives.
Method 4: Free Online Converters (Small Files)
On a public computer or a borrowed Windows machine, online converters fill the gap. iLovePDF, Smallpdf, PDF24, and Adobe's web tool all offer free JPG to PDF conversion in the browser: drag files onto the drop zone, reorder, click Convert, download the PDF.
The caveats are worth being honest about:
- Privacy. Your images get uploaded to a third party. For ID photos, tax forms, or medical paperwork, that's a bad idea. Native methods (Preview, Quick Actions) keep the file on your Mac.
- File size limits. Most free tiers cap uploads around 10–25 MB per file. High-resolution phone photos hit that ceiling fast.
- Watermarks and paywalls. Free tiers sometimes watermark output or cap conversions per hour.
- Internet requirement. No Wi-Fi, no conversion.
For one-off non-sensitive images, online tools are fine. For recurring or private work, convert locally.
Method 5: Microsoft Word / Google Docs Workaround
Not many people think of their word processor as a JPG to PDF converter, but it works well — especially if you want to add a caption or header before exporting.
In Microsoft Word: Open a blank document, Insert → Pictures → Picture from File, pick your JPGs, resize as needed, then File → Save As (or Export) and pick PDF.
In Google Docs: Open a blank Doc, Insert → Image → Upload from computer, pick your JPG, then File → Download → PDF Document (.pdf).
This is the slowest method on the list, but it shines when you need to annotate the image. Example: scanned receipt + a line of text saying "Client meeting — March 3" — a word processor handles that in one shot.
Method 6: Command Line (Advanced — ImageMagick / sips)
If you have hundreds of images to convert or you're scripting a repeatable workflow, the command line is untouchable.
sips (built into macOS)
macOS ships with sips (Scriptable Image Processing System), which is hidden in every Mac and handles basic JPG to PDF conversion out of the box. No installation needed.
sips -s format pdf photo.jpg --out photo.pdf
To batch-convert every JPG in the current directory into individual PDFs:
for f in *.jpg; do
sips -s format pdf "$f" --out "${f%.jpg}.pdf"
done
sips converts each JPG into its own PDF. It doesn't merge them into one document — for that, you need ImageMagick.
ImageMagick
ImageMagick is the swiss-army-knife of image processing. Install it via Homebrew on macOS:
brew install imagemagick
Convert a single JPG to PDF:
magick photo.jpg photo.pdf
Combine multiple JPGs into a single multi-page PDF:
magick *.jpg combined.pdf
Set a specific page size and add a white background (handy for printing):
magick *.jpg -background white -page a4 combined.pdf
Control the image density (useful if the output looks fuzzy at print size):
magick -density 150 *.jpg combined.pdf
For most workflows, magick *.jpg combined.pdf is all you need. ImageMagick processes files in shell-alphabetical order, so prefix filenames with 01-, 02-, etc. to lock in the page sequence.
Method 7: Batch Convert Many JPGs to One PDF
This is the pain point that lands people on online tools: "I have 40 receipts in JPG and need one PDF." Three reliable local options:
Option A: Finder Quick Actions (easiest, Mac). Select all JPGs, right-click, Quick Actions → Create PDF. Rename numerically first (01.jpg, 02.jpg…) for correct order.
Option B: Preview with thumbnail drag-reorder. Open all JPGs in Preview, drag sidebar thumbnails into order, then File → Print → PDF → Save as PDF.
Option C: ImageMagick one-liner. cd into your folder and run magick *.jpg combined.pdf. Works identically on macOS, Linux, and Windows (PowerShell).
All three run locally and handle hundreds of images. If your sources are PNGs, see our PNG to PDF guide; for mixed formats, normalize with PNG to JPG first.
Compress Your PDF After Converting With Compresto
Here's the part most JPG to PDF guides skip: once you combine 40 iPhone photos into a PDF, that PDF is enormous. A single 4032x3024 iPhone photo is often 3–5 MB. Forty of them in a single PDF can easily hit 150–200 MB — too big for email attachments, document portals, or quick sharing.
Compresto is a native macOS app built for post-conversion cleanup. Drop your new PDF onto Compresto and it rewrites the file with smaller embedded images, typically shrinking it by 70–90% with no visible quality loss. Everything runs locally on your Mac — no uploads, no server round-trip, no privacy concerns.
Compresto handles videos, images, PDFs, and GIFs with the same drop-and-done workflow, and it's built around Apple Silicon's hardware acceleration (VideoToolbox, Metal). Batch processing handles hundreds of files at once. If you just spent five minutes combining JPGs into a PDF, it takes another ten seconds to shrink the result to something you can email.
For more ways to shrink PDFs on Mac, see our guides to compressing PDFs on Mac and reducing PDF file size.
Download Compresto free for macOS.
Frequently Asked Questions
Can I combine multiple JPGs into one PDF?
Yes. On Mac, select all the JPGs in Finder, right-click, and choose Quick Actions → Create PDF. Images become pages in a single PDF, ordered alphabetically by filename. For manual page order, open the JPGs in Preview, reorder in the sidebar, then export as PDF. On Windows, select the files, right-click, and choose Print → Microsoft Print to PDF.
Does converting JPG to PDF reduce quality?
Not directly. The JPG to PDF conversion itself doesn't re-compress the image — the JPG is embedded inside a PDF container at original quality. Some tools let you set a compression level during conversion, which can shrink the file but soften the image. For lossless conversion on Mac, Preview and Quick Actions both embed the original JPG unchanged. If the resulting PDF is too large, run it through a PDF compressor afterward rather than reducing quality at conversion time.
What's the best free JPG to PDF converter?
On Mac, the best free converter is already installed: Preview (for fine control) or Finder Quick Actions (for speed). No watermarks, no file size limits, no internet required. On Windows, built-in Microsoft Print to PDF does the same job. For cross-platform browser-based conversion, iLovePDF and Smallpdf are reputable, but they upload your files to their servers — which matters for sensitive documents.
How do I convert JPG to PDF without internet?
Use a native method. On Mac, open the image in Preview and choose File → Export as PDF, or select multiple JPGs in Finder and right-click Quick Actions → Create PDF. On Windows, right-click and pick Print → Microsoft Print to PDF. Both work offline and handle batches. For command-line control, install ImageMagick (brew install imagemagick) and run magick *.jpg combined.pdf.
How do I make the PDF smaller after converting from JPG?
The usual culprit is high-resolution source images. A PDF embedding forty 12-megapixel iPhone photos will be large regardless of how you converted it. Run the output through a PDF compressor like Compresto to re-sample embedded images — this typically shrinks the file by 70–90%. You can also reduce source resolution before conversion (Preview's Tools → Adjust Size) or convert at lower quality with ImageMagick (-quality 80). See our guide to reducing PDF file size for more.
Is JPEG to PDF the same as JPG to PDF?
Yes. JPG and JPEG are the same image format — the filename extension is the only difference (early Windows systems limited extensions to three characters). Any converter that handles JPG handles JPEG. Output is identical.
Conclusion
Converting JPG to PDF shouldn't require uploading your files to a stranger's website. Every Mac ships with two free native methods — Preview for multi-image combination and Finder Quick Actions for one-click conversion. Every Windows PC has Print to PDF built in. Command-line tools like sips and ImageMagick handle batches and scripting. Adobe Acrobat and online converters have their place, but they're rarely the first tool to reach for.
Once you have a PDF, the next step is usually making it smaller. Compresto is the fastest way to shrink a PDF on Mac — hardware-accelerated, fully local, and built for batches.
Download Compresto for macOS and turn JPG to PDF into a two-step workflow: convert, compress, done.