PDF to JPG: 4 Easy Ways to Convert (2026 Guide)

Need to convert PDF to JPG? This complete guide covers 4 proven methods — online converters, macOS Preview, Adobe Acrobat, and command line tools — plus tips for quality, batch processing, and file size.

PDF to JPG: 4 Easy Ways to Convert (2026 Guide)

Converting PDF to JPG sounds trivial until you actually need to do it. Maybe you need to embed a contract page into a Keynote slide, or a client asked for thumbnails of a 40-page deck, or you just want to share a single page on social media without attaching the whole document.

There is no single "right" way to convert PDF pages into JPEG images. The best method depends on how many files you have, how sensitive the content is, and how much control over quality you need. This guide walks you through the four most practical methods, from zero-install online tools to a one-line command for power users.


Why Convert PDF to JPG?

PDF is built for documents. It handles text, vectors, fonts, and multi-page layouts beautifully. JPG is built for pictures — a compressed raster format supported by literally every device, browser, app, and service on the planet.

Here are the most common reasons people need to convert a PDF to JPG:

  • Sharing on social media — Instagram, X, LinkedIn, and Pinterest accept images, not PDFs
  • Embedding in documents — Inserting a PDF page into Word, Google Slides, or Keynote
  • Email previews — JPEGs render inline; PDF attachments require a click
  • Web publishing — Browsers render JPG faster than embedded PDF viewers
  • Thumbnails and cover art — Book covers, menus, and brochure previews work best as images
  • OCR and image editing — Some editors and AI tools require raster input
  • Archiving single pages — Pulling one page out of a 200-page report

Now let's look at how to actually do it.


Method 1: Online PDF to JPG Converters

The fastest option if you have a single PDF and do not mind uploading it to a third party. Tools like SmallPDF, iLovePDF, PDF24, and Adobe's free web converter all follow the same pattern: drag in a PDF, wait, download a ZIP of JPG files.

How to use an online converter

  1. Open your browser and visit any reputable PDF to JPG converter
  2. Drag your PDF into the upload area (or click to browse)
  3. Choose whether you want every page as a separate JPG or only the embedded images extracted
  4. Click Convert and wait for processing
  5. Download the resulting JPG files (usually delivered as a ZIP archive)

Pros

  • No installation, works on any operating system
  • Fine for one-off conversions
  • Usually free for small files

Cons

  • Privacy risk — you are uploading a document to someone else's server. Bad idea for contracts, medical records, or anything confidential
  • File size limits — free tiers typically cap at 10–50 MB
  • Slow for batches — uploading 30 PDFs one at a time is painful
  • Quality inconsistency — some services silently downscale to 72 DPI
  • Ads and upsells — free tools aggressively push subscriptions

Use online converters for public documents you would not mind a stranger seeing. For anything else, use one of the three methods below.


Method 2: Convert PDF to JPG with macOS Preview (Built-In)

If you are on a Mac, you already have a free, private, surprisingly capable PDF to JPG converter installed: Preview. It handles single pages and whole documents without uploading anything to the cloud.

Step-by-step: Single page

  1. Open the PDF in Preview — double-click the file, or right-click and choose Open With > Preview
  2. In the sidebar, click the page thumbnail you want to convert
  3. Go to File > Export
  4. In the dialog, click the Format dropdown and choose JPEG
  5. Drag the Quality slider to your preferred level (75–90% is a good balance)
  6. Optionally change the Resolution field — 150 DPI for web, 300 DPI for print
  7. Click Save

That's it. You now have a JPG of the selected page.

Step-by-step: All pages at once

Preview's Export only handles one page at a time, but there is a clever workaround:

  1. Open the PDF in Preview
  2. Press Cmd + A in the thumbnail sidebar to select every page
  3. Go to File > Export Selected Images...
  4. Choose JPEG as the format and pick a destination folder
  5. Click Choose — Preview will export each page as a separately named JPG

Preview names the files sequentially (e.g. document-1.jpg, document-2.jpg), which is perfect for bulk workflows.

Pros and cons

  • Free, no downloads, everything stays on your Mac
  • Quality and resolution are controllable, works offline
  • macOS only, no true batch mode across multiple source PDFs

If you want a more comprehensive look at working with PDFs on a Mac, our guide on how to compress PDF on Mac covers other Preview tricks worth knowing.


Method 3: Adobe Acrobat and Other Desktop Software

Adobe Acrobat — specifically Acrobat Pro DC — remains the gold standard for anyone who works with PDFs professionally. Its PDF to JPG export is reliable, high-quality, and supports batch processing out of the box.

How to convert with Adobe Acrobat Pro

  1. Open your PDF in Acrobat Pro
  2. Click File > Export To > Image > JPEG
  3. In the export dialog, click Settings to adjust:
    • Grayscale / color compression quality (low, medium, high, maximum)
    • Resolution (72 to 600 DPI)
    • Color space (RGB, sRGB, CMYK)
  4. Click Save and choose a destination

Acrobat will create one JPG per page automatically.

Batch converting multiple PDFs in Acrobat

  1. Go to Tools > Action Wizard
  2. Click New Action
  3. Add Export All Images or Save as JPEG to the action sequence
  4. Add a folder of PDFs as the input
  5. Run the action — Acrobat processes each file in order

Other desktop alternatives

If Acrobat's subscription price feels steep, several alternatives offer PDF to JPG conversion:

  • PDFelement by Wondershare — one-time license, cross-platform
  • Foxit PDF Editor — leaner than Acrobat, supports batch export
  • PDF Expert — Mac-native, clean UI, one-time purchase
  • LibreOffice Draw — free and open source, basic PDF to image export

Pros

  • Professional-grade quality control
  • True batch processing
  • Privacy: everything processes locally
  • Handles complex PDFs (encrypted, forms, layers)

Cons

  • Adobe Acrobat Pro costs roughly $20–25/month
  • Overkill for a handful of conversions
  • Steeper learning curve than Preview or an online tool

Method 4: Command Line with pdftoppm (Power Users)

If you routinely convert dozens or hundreds of PDFs, nothing beats the command line. The Unix utility pdftoppm (part of the poppler-utils package) is small, fast, scriptable, and completely free.

Install pdftoppm

macOS (with Homebrew):

brew install poppler

Linux (Debian/Ubuntu):

sudo apt install poppler-utils

Windows: download the binaries from the Poppler releases page, or install via Scoop (scoop install poppler).

Basic conversion

pdftoppm -jpeg -r 150 document.pdf page

This converts every page of document.pdf into JPG files named page-1.jpg, page-2.jpg, and so on at 150 DPI.

Useful flags

FlagPurpose
-jpegOutput JPEG format (default is PPM)
-r 300Set resolution in DPI (150 for web, 300 for print)
-jpegopt quality=85Set JPEG quality (0–100)
-f 5 -l 10Convert only pages 5 through 10
-grayConvert to grayscale

Batch-convert a whole folder

for pdf in *.pdf; do
  pdftoppm -jpeg -r 150 "$pdf" "${pdf%.pdf}-page"
done

Drop this into a shell script and you have a reusable pipeline that can process hundreds of PDFs in a single run.

Pros

  • Blazingly fast
  • Scriptable and automatable
  • Free and open source
  • Perfect for batch workflows and servers

Cons

  • Command line experience required
  • No GUI
  • Slight setup overhead on Windows

Quality and File Size Considerations

Once you start converting PDF pages to JPG, you will quickly notice that file sizes balloon. A 2 MB PDF can easily expand into 50 MB of JPG images at 300 DPI. Here's why — and what to do about it.

Resolution matters

The DPI setting controls how many pixels each inch of the original PDF becomes. Higher DPI means sharper images and massively bigger files.

  • 72–96 DPI — fine for screen-only previews and thumbnails
  • 150 DPI — good default for web publishing
  • 300 DPI — standard for print-quality output
  • 600 DPI — archival, very large files

Pick the lowest DPI that still looks crisp for your use case. Going from 300 to 150 DPI cuts file sizes by roughly 75%.

JPEG quality slider

JPEG is a lossy format. A quality value of 100 produces near-perfect images but huge files. Most eyes cannot tell the difference between 85 and 100, so setting quality to 80–90 usually gives the best size-to-clarity ratio.

Compress the JPGs after conversion

Even with sensible settings, batch PDF to JPG output is almost always larger than it needs to be. This is where post-conversion compression makes a real difference — you can easily shrink a folder of JPGs by 40–70% with no visible quality loss.

If you are on a Mac, Compresto is built for exactly this step. Drop the converted JPGs in, pick a quality preset, and the whole folder is re-compressed in seconds. You end up with sharp images that are actually small enough to email, upload, or archive.


Batch Conversion Tips

A few best practices that will save you headaches when converting large numbers of PDFs:

  1. Name files consistently. Use sequential suffixes (report-01, report-02) rather than page titles — it makes sorting trivial
  2. Separate input and output folders. Never mix source PDFs and output JPGs in the same directory. You will regret it
  3. Process in batches of 50–100. Most tools handle this comfortably; larger batches risk crashing Preview or hitting memory limits
  4. Test one PDF first. Before running a 500-file job, verify that one file converts at the settings you want
  5. Check the first and last file. Confirm quality at the start and end of the batch in case something drifted
  6. Keep the original PDFs. Always. JPGs are lossy; you cannot recover the original text layer once it's gone
  7. Compress afterward. Batch conversions produce huge folders — run them through an image compressor to cut 50%+ off the total size

For image format work beyond PDFs, you might also find our guides on converting WebP to JPG, TIFF to JPG conversion, and HEIC to JPG useful — the quality trade-offs apply across all raster formats.


Frequently Asked Questions

Can I convert PDF to JPG without losing quality?

Technically no — JPG is a lossy format, so some quality loss is inevitable. But you can get visually lossless results by setting the JPEG quality to 90–95% and the resolution to match your source PDF (usually 300 DPI for print or 150 DPI for web). Preview and Acrobat both let you adjust both settings before export.

How do I convert a multi-page PDF to a single JPG?

Most tools create one JPG per page by default. If you genuinely need all pages stitched into a single long JPG, you'll have to convert each page separately and then merge them vertically in an image editor like Photoshop, GIMP, or Pixelmator. Alternatively, export the PDF to a single PNG using Preview (sometimes easier for vertical stitching), then convert to JPG.

Is converting PDF to JPG safe for confidential documents?

Only if you use an offline method. Online converters upload your file to a third-party server, which is a real privacy risk for contracts, financial records, or medical documents. Use macOS Preview, Adobe Acrobat, pdftoppm, or another local tool for anything sensitive — the file never leaves your machine.

Why are my converted JPGs so large?

High DPI settings and maximum quality sliders inflate file sizes quickly. Try dropping the DPI to 150 and the JPEG quality to 85 — you'll usually cut file size by 60–80% with no visible difference. After converting, run the output through an image compressor to shrink things even further. See our guides on reducing PDF file size and compressing PDF file size for related techniques.

What's the best free tool to convert PDF to JPG on Mac?

macOS Preview, hands down. It's already installed, free, private (nothing uploads), supports batch export via Cmd+A in the sidebar, and lets you control quality and resolution. For power users, pdftoppm via Homebrew is the next step up. Our roundup of the best free PDF compressors covers several related tools worth knowing about.

Can I convert a scanned PDF to JPG?

Yes — in fact, scanned PDFs convert to JPG more predictably than text-based PDFs, because they are already images internally. Any of the four methods in this guide will work. Just be aware that if you need to edit or search the text afterward, you'll need to run OCR on the resulting JPGs separately.


Conclusion: Pick the Right Tool for the Job

Converting PDF to JPG is not one task — it's four different tasks dressed up in the same name. The right method depends on your constraints:

  • One public document, need it fast → online converter
  • Privacy matters, you're on a Mac → Preview
  • Professional workflow, batch processing → Adobe Acrobat or alternative desktop software
  • Automation, hundreds of files, scripting → pdftoppm

Whichever method you pick, remember that the conversion is only half the job. Raw JPG output from a PDF is almost always larger than it needs to be, and that bloat shows up in slow email attachments, sluggish web pages, and wasted cloud storage.

That's where Compresto comes in. Once your PDFs are converted, drop the resulting JPG folder into Compresto and let it handle the cleanup — intelligent compression that typically cuts file size by 50–70% without any visible quality loss. It's native macOS, privacy-first (nothing uploads), and designed specifically for batch workflows like this. If you also handle Mac-native PDF compression regularly, our roundup of the best PDF compressor software for Mac is worth a read too.

Convert confidently, compress afterward, and ship images that actually fit their purpose.

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