Picovert

How to Convert PDF to JPG for Free: 5 Easy Methods

By Picovert Team2026-02-095 min read

PDF is the go-to format for documents, contracts, and reports — but sometimes you need a single page as an image. Whether you want to embed a chart in a presentation, post a certificate to social media, share a specific page without sending the whole document, or create a thumbnail preview, converting PDF to JPG is the fastest solution. This guide covers five free methods for every platform.

Why convert PDF to JPG?

  • Presentations — Paste a PDF chart or diagram directly into PowerPoint or Google Slides without compatibility issues.
  • Social media — Platforms like Instagram, Twitter, and LinkedIn do not accept PDFs. Converting to JPG lets you post any PDF page instantly.
  • Single-page sharing — Share just one relevant page from a long report instead of the entire file.
  • PDF thumbnails — Generate a preview image for a document before distributing it.
  • Email attachments — Some email clients block PDF attachments; a JPG passes through any spam filter.

Method 1: Online converter (fastest, no install)

The quickest approach is to use an online tool. Visit Picovert's Image Converter, upload your PDF, and download the JPG output in seconds. Processing happens in your browser — no file is sent to any server, which keeps your documents private.

  1. Open the converter and click "Select file" or drag your PDF into the drop zone.
  2. Choose JPG as the output format.
  3. Click Convert and download the result.

Many other online converters exist (Smallpdf, ILovePDF, Adobe online tools) and work in a similar way. The difference is that browser-side tools never upload your file to a remote server, which matters when converting confidential PDFs.

Method 2: Windows — Snipping Tool or Print Screen

For a quick single-page extraction on Windows, you do not need to install anything.

  1. Open the PDF in any PDF reader (Microsoft Edge, Adobe Reader, Chrome).
  2. Navigate to the page you want to capture.
  3. Press Win + Shift + S to open the Snipping Tool, then drag a rectangle around the page content.
  4. The screenshot is copied to your clipboard. Paste it into Paint (Ctrl + V) and save as JPEG.

This approach is ideal for a single page at screen resolution. For higher quality — for example, when you need to print the result — use the ImageMagick method described below.

Method 3: Mac Preview (built-in, supports page ranges)

macOS ships with Preview, which can export any PDF page as JPEG with no additional software.

  1. Open the PDF in Preview.
  2. In the sidebar, click the page (or hold Cmd and click multiple pages) you want to export.
  3. Go to File → Export (not "Export as PDF").
  4. In the Format dropdown, choose JPEG.
  5. Adjust the Quality slider, select a destination, and click Save.

To export all pages at once, select all pages in the sidebar (Cmd + A), then File → Export Selected Images. Preview saves each page as a separate JPEG file numbered sequentially.

Method 4: Adobe Acrobat (widely available in offices)

If your workplace has Adobe Acrobat (not just the free Reader), it offers the most polished PDF-to-image workflow.

  1. Open the PDF in Acrobat.
  2. Go to File → Export To → Image → JPEG.
  3. In the settings dialog, set the Resolution to 150 ppi (web use) or 300 ppi (print use).
  4. Choose a destination folder and click Export.

Acrobat exports every page as a separate JPEG named with the original filename plus a page number suffix. It also preserves embedded fonts and vector graphics at the chosen resolution, giving consistently sharp results.

Method 5: ImageMagick command line (batch, scriptable)

ImageMagick is a free, open-source tool available on Windows, Mac, and Linux. It is the best choice for batch conversion or automated pipelines. On Mac you can install it with brew install imagemagick; on Ubuntu with apt install imagemagick. Windows installers are available at imagemagick.org.

Basic conversion command (all pages):

convert -density 300 -quality 90 input.pdf output-%03d.jpg

Key flags:

  • -density 300 — sets the rendering resolution to 300 DPI. This is critical: omitting it defaults to 72 DPI, which looks blurry. Use 150 for web images, 300 for anything that will be printed.
  • -quality 90 — JPEG compression quality (1–100). 85–95 is a good range that balances file size and sharpness.
  • output-%03d.jpg — the %03d produces zero-padded numbers: output-000.jpg, output-001.jpg, and so on.

On some systems ImageMagick uses Ghostscript to render PDFs. If you see a "not authorized" error, edit /etc/ImageMagick-7/policy.xml and change the PDF rights from none to read|write.

Handling multi-page PDFs

When working with a multi-page PDF you have two common needs: extracting all pages, or extracting a specific range.

All pages — The ImageMagick command above handles this automatically, creating one JPG per page. Mac Preview's "Export Selected Images" also exports all selected pages at once.

Specific pages — In ImageMagick, append the page index in brackets (zero-based):

convert -density 300 -quality 90 "input.pdf[0]" page1.jpg

For a range (e.g., pages 2 through 5):

convert -density 300 -quality 90 "input.pdf[1-4]" output-%03d.jpg

Alternatively, Ghostscript gives you even finer control:

gs -dNOPAUSE -dBATCH -sDEVICE=jpeg -r300 -dJPEGQ=90 \
  -dFirstPage=2 -dLastPage=5 -sOutputFile=output-%03d.jpg input.pdf

Resolution guide: choosing the right DPI

  • 72 DPI — Screen display only. Fast to generate, small file, not suitable for printing or close inspection.
  • 150 DPI — Good quality for web use, email attachments, and on-screen presentations. The file size is manageable.
  • 300 DPI — Print quality. Use this when the JPG will be printed or when fine text and line art must remain sharp.
  • 600 DPI — High-end print and archival scanning. Files are very large; only needed for technical drawings or medical documents.

As a rule of thumb: match the DPI to the original PDF's intended use. A PDF designed for screen reading will look fine at 150 DPI; a print brochure needs at least 300 DPI.

After conversion: compressing the JPG

A 300 DPI JPG from a full A4 page can easily be 2–5 MB. If you need to share it by email or embed it in a web page, use Picovert's Image Compressor to reduce the file size without visible quality loss. The compressor runs in your browser and can typically cut JPG file size by 40–70% while keeping the image looking sharp at normal viewing distances.