
How to Convert PDF to JPG: Complete Tutorial

Michael Foster
Content Creator & Tutorial Expert
Converting PDF pages to JPG images is useful for thumbnails, social media, and embedding in applications that do not support PDF. This tutorial covers every conversion method for 2026 with quality and resolution tips.
Table of Contents
Converting PDF pages to JPG images is a common task with many practical applications. Whether you need a thumbnail image for a website, want to share a single page on social media, or need to embed document content in an application that does not support PDF, converting to JPG is the solution. This complete tutorial walks through every method available in 2026, with tips for getting the best image quality.
Why Convert PDF to JPG?
There are many scenarios where JPG is more useful than PDF:
- Web embedding: Most web applications and CMS platforms accept JPG but not PDF for inline images.
- Social media: Platforms like Instagram, Twitter, and Facebook do not support PDF uploads but readily accept JPG.
- Thumbnails: Generate preview images of PDF documents for galleries and file browsers.
- Email signatures: Embed a PDF page as an image in email signatures.
- Presentations: Insert PDF content into PowerPoint or Keynote slides as images.
- Mobile sharing: Sharing a JPG is often easier on mobile devices than sharing a PDF.
JPG vs. PNG for PDF Conversion
When converting PDF pages to images, you have two main format choices:
- JPG: Best for pages with photographs or complex color gradients. Smaller file size. Does not support transparency.
- PNG: Best for pages with text, line art, or screenshots. Larger file size. Supports transparency. Lossless compression.
For most PDF-to-image conversions, JPG is the more practical choice because PDF pages typically contain a mix of text and images, and JPG's smaller file size is advantageous for web use.
Method 1: Convert PDF to JPG Online
Online converters are the fastest and most accessible option for most users.
Step-by-Step: Converting PDF to JPG Online
- Upload your PDF: Drag and drop the file into the converter.
- Choose output format: Select JPG (some tools also offer PNG).
- Choose conversion mode:
- Convert all pages: Each page becomes a separate JPG.
- Convert specific pages: Enter page numbers or ranges.
- Convert first page only: Useful for generating a thumbnail.
- Set quality/DPI (if available): Higher DPI means better quality but larger files. 150 DPI is good for screen, 300 DPI for print.
- Convert and download: Click convert, then download the resulting JPG(s). If converting multiple pages, you will receive a ZIP file.
- Verify quality: Open the JPG(s) and check that text is readable and images are clear.
Choosing the Right DPI
The DPI (dots per inch) setting determines image quality:
| DPI | Quality | File Size | Best For |
|---|---|---|---|
| 72 | Low | Very small | Web thumbnails |
| 150 | Good | Medium | Screen viewing, web display |
| 300 | High | Large | Printing, high-quality display |
| 600 | Very high | Very large | Archival, professional printing |
For most web use, 150 DPI is the sweet spot. For printing, use 300 DPI.
Method 2: Desktop Software Conversion
Desktop tools offer more control over quality and work offline.
Using Adobe Acrobat Pro
- Open the PDF in Acrobat Pro.
- Go to File > Export To > Image > JPEG.
- In the settings dialog, choose:
- Resolution (DPI): 150 for screen, 300 for print.
- Quality: Low, Medium, High, or Maximum.
- Color space: RGB for screen, CMYK for print.
- Page range: All pages or specific pages.
- Click "Export" and choose a destination folder.
- Acrobat saves each page as a separate JPG file.
Using Preview (macOS)
- Open the PDF in Preview.
- Show the thumbnail pane (View > Thumbnails).
- Select the page(s) you want to convert.
- Go to File > Export.
- Choose JPEG as the format.
- Set the quality slider.
- Click Save.
For multiple pages, export each one individually, or use the following trick: select all pages, copy them, create a new image in Preview, and save — though this method is less reliable than using a dedicated converter.
Using GIMP (Free, Cross-Platform)
- Open the PDF in GIMP.
- GIMP prompts for resolution — enter 150 or 300 DPI.
- GIMP imports each page as a separate layer.
- Select the page (layer) you want.
- Go to File > Export As and choose .jpg.
- Set quality and click Export.
- Repeat for each page.
Method 3: Command-Line Conversion
For automation and batch processing, command-line tools are ideal.
Using ImageMagick
ImageMagick is a powerful image processing tool available on all platforms:
# Convert all pages to JPG
convert -density 150 input.pdf output.jpg
# Convert a specific page (e.g., page 1)
convert -density 150 input.pdf[0] page1.jpg
# Convert with specific quality
convert -density 150 -quality 85 input.pdf output.jpgThe `-density` flag sets the DPI, and `-quality` controls JPG compression (1–100, higher is better quality).
Using pdftoppm (poppler-utils)
pdftoppm is a lightweight, fast tool specifically for PDF-to-image conversion:
# Convert all pages to JPG at 150 DPI
pdftoppm -jpeg -r 150 input.pdf output
# Convert a specific page range (pages 1-3)
pdftoppm -jpeg -r 150 -f 1 -l 3 input.pdf output
# Convert at 300 DPI for high quality
pdftoppm -jpeg -r 300 input.pdf outputThis produces files named `output-1.jpg`, `output-2.jpg`, etc.
Batch Conversion Script
To convert multiple PDFs to JPGs:
#!/bin/bash
for pdf in *.pdf; do
name=$(basename "$pdf" .pdf)
pdftoppm -jpeg -r 150 "$pdf" "$name"
doneThis script processes every PDF in the current directory and creates JPG images for each page.
Tips for High-Quality Conversion
Start with a High-Quality PDF
The quality of your JPG depends on the quality of the source PDF. If the PDF contains low-resolution images, the JPG will be low quality regardless of conversion settings. Ensure the source PDF has images at 300 DPI or higher for best results.
Choose the Right DPI
Do not over-sample. Converting at 600 DPI when the source PDF only contains 150 DPI content does not improve quality — it just creates a larger file. Match the conversion DPI to the source content's resolution.
Use Appropriate JPG Quality
JPG quality settings affect both file size and visual quality:
- Quality 60–70: Small files, visible compression artifacts. Acceptable for thumbnails.
- Quality 80–85: Good balance of size and quality. Best for most web use.
- Quality 90–95: High quality, larger files. Best for print or archival.
- Quality 100: Maximum quality, largest files. Usually overkill.
Consider PNG for Text-Heavy Pages
If the PDF page is primarily text, converting to PNG instead of JPG will produce a sharper image. JPG compression can introduce artifacts around text edges, making it look blurry. PNG preserves text edges cleanly.
Common Problems and Solutions
Problem: Text Is Blurry in the JPG
This usually means the DPI is too low. Increase the conversion DPI to at least 150 for screen viewing or 300 for print. If the text is still blurry, the source PDF may have low-resolution content.
Problem: Colors Look Different
PDFs may use CMYK color space while JPGs use RGB. The conversion between color spaces can shift colors. If color accuracy matters, use a tool that lets you control color space conversion, or convert to PNG which handles color more predictably.
Problem: File Size Is Too Large
High DPI and high quality settings produce large files. Reduce the DPI to 150 for screen viewing, lower the JPG quality to 80–85, or convert only the pages you need instead of the entire document.
Problem: Only the First Page Converts
Some tools convert only the first page by default. Check the settings for a "convert all pages" option, or specify a page range. With command-line tools, omit the page range to convert all pages.
Conclusion
Converting PDF to JPG is a straightforward process with many available methods. For quick, one-time conversions, online tools are the fastest option. For higher quality or offline use, desktop software like Adobe Acrobat Pro or GIMP provides more control. And for automation, command-line tools like ImageMagick and pdftoppm handle batch processing efficiently. The key to good results is choosing the right DPI and quality settings for your intended use — 150 DPI at 85% quality for web, 300 DPI at 95% quality for print.
Sources & References
About the Author

Michael Foster
Content Creator & Tutorial Expert
Michael creates in-depth tutorials and guides that make complex tools accessible to everyone. He has a passion for teaching and clear communication.
Frequently Asked Questions
What is the best DPI for converting PDF to JPG?
Should I convert PDF to JPG or PNG?
Can I convert all pages of a PDF to separate JPG files?
Why is my converted JPG blurry?
Start working smarter today
Join 500,000+ users who trust VisualDocs for their daily image and PDF workflows.
