How to Convert PDF to JPG in High Quality: DPI & Settings Guide
Learn how to convert PDF pages to high-quality JPG images. Covers DPI settings, resolution optimization, color management, batch export, and choosing the right quality settings for every use case.
Emma Wilson·February 19, 2026·14 min read
Try these conversions
Free, in your browser — no signup, files auto-delete in 2 hours.
Converting a PDF to JPG sounds straightforward until you download the result and find a blurry, pixelated mess. The text is fuzzy, the charts are unreadable, and the images look like they were photographed through a dirty window. This happens because most default conversion settings prioritize small file sizes over visual quality, producing JPGs at 72 or 96 DPI -- fine for a quick preview, completely inadequate for anything you plan to actually use.
The difference between a low-quality and high-quality PDF-to-JPG conversion is significant. A 72 DPI conversion of a standard letter-size page produces an image roughly 612 by 792 pixels -- barely visible at full screen on a modern monitor. The same page at 300 DPI produces a 2550 by 3300 pixel image: crisp text, clean lines, and perfectly readable fine print. At 600 DPI, you get print-quality output suitable for professional reproduction.
Understanding DPI (dots per inch), JPEG compression, and color management is the difference between producing JPGs that look professional and producing JPGs that make your content look amateur. This guide covers the technical details you need to get consistently high-quality output from every PDF-to-JPG conversion.
Side-by-side comparison of PDF to JPG at different DPI settings
Understanding DPI and Resolution
DPI stands for Dots Per Inch, and it defines how many pixels are created per inch of the source document. Since a standard US Letter page is 8.5 by 11 inches, the math is straightforward:
DPI Setting
Pixel Dimensions (Letter)
File Size (approx.)
Best For
72 DPI
612 x 792
50-150 KB
Thumbnails, quick previews only
96 DPI
816 x 1056
80-250 KB
Screen display, low-priority web use
150 DPI
1275 x 1650
200-600 KB
Web use, email, presentations
200 DPI
1700 x 2200
400-900 KB
Good quality screen display, social media
300 DPI
2550 x 3300
800 KB - 2 MB
Print quality, professional use, archiving
600 DPI
5100 x 6600
2-6 MB
High-quality print, detailed technical drawings
Choosing the Right DPI
The right DPI depends entirely on how you plan to use the image:
Web and screen display (150-200 DPI): Modern screens range from 72 DPI (older monitors) to 220+ DPI (Retina displays). For web use, 150 DPI provides good quality on standard screens, and 200 DPI looks sharp even on high-DPI displays. Going higher than 200 DPI for web use produces unnecessarily large files without visible improvement.
Presentations (150-200 DPI): PowerPoint and Google Slides display images at screen resolution. 150-200 DPI provides crisp output when projected, and higher DPI is wasted since projectors typically display at 1080p or lower.
Print (300 DPI minimum): The industry standard for print reproduction is 300 DPI. At this resolution, individual pixels are invisible to the naked eye at normal viewing distance. For large-format printing (posters, banners) viewed from a distance, 150-200 DPI is often sufficient.
Professional and archival (300-600 DPI): When quality is the priority and file size is not a concern, 300-600 DPI preserves maximum detail. Legal documents, technical drawings, and archival images benefit from higher resolution.
Pro Tip: When in doubt, convert at 300 DPI. You can always downscale a high-resolution image later, but you cannot add detail to a low-resolution image. Start with the highest quality you might need and reduce as necessary for specific applications.
Method 1: Convert Online with ConvertIntoMP4
The PDF to Image converter on ConvertIntoMP4 provides a quick browser-based conversion path with quality controls.
Step 2: Upload your PDF file by dragging it onto the page or clicking to browse.
Step 3: Select JPG as the output format.
Step 4: Set your desired quality and DPI settings. Choose higher values for better quality output.
Step 5: Click convert and download your JPG files. Multi-page PDFs produce one JPG per page.
For a broader overview of PDF-to-image conversion covering JPG, PNG, and TIFF formats, see our complete guide on how to convert PDF to images.
Method 2: Adobe Acrobat Pro
Acrobat Pro provides the most detailed export controls for PDF-to-JPG conversion.
Export Settings
Open your PDF in Acrobat Pro
Go to File > Export To > Image > JPEG
Click Settings to configure quality options:
File Settings: Grayscale or Color, JPEG quality (1-12 scale where 12 is maximum quality)
Color Management: Convert to sRGB for web, preserve original for print
Resolution: Set exact DPI value
Conversion: Choose which pages to export (all, range, or current)
Click Save and choose the output location
Quality Scale
Acrobat's JPEG quality scale runs from 1 (minimum quality, smallest file) to 12 (maximum quality, largest file):
Quality Level
Compression Ratio
Visual Quality
Recommended For
1-3
High compression
Noticeable artifacts, fuzzy text
Thumbnails only
4-6
Moderate compression
Slight artifacts, acceptable for web
Web images, email attachments
7-9
Light compression
Minimal artifacts, good quality
General purpose, presentations
10-12
Very light compression
Near-lossless, excellent quality
Print, archival, professional use
For most use cases, quality 8-10 at 300 DPI provides excellent results with reasonable file sizes. Quality 12 at 600 DPI produces the highest possible quality but generates very large files.
Method 3: Using Free Desktop Software
GIMP (Free, Cross-Platform)
GIMP (GNU Image Manipulation Program) can open PDF files and export them as JPG:
Open GIMP
Go to File > Open and select your PDF
In the Import dialog, set the Resolution (DPI) -- use 300 for good quality
Select the page(s) to import
Go to File > Export As, change the extension to .jpg
In the JPEG export dialog, set the Quality slider (0-100, recommended: 85-95)
Click Export
GIMP imports one page at a time by default. For multi-page PDFs, you need to import each page separately or use a batch processing script.
LibreOffice Draw
LibreOffice Draw can open PDFs and export pages as images, though the process is less intuitive than dedicated conversion tools. It is useful if you already have LibreOffice installed and need a quick conversion without installing additional software.
# Basic conversion at 300 DPI
convert -density 300 input.pdf output.jpg
# High quality with specific JPEG quality setting
convert -density 300 -quality 95 input.pdf output-%03d.jpg
# Convert specific pages (0-indexed)
convert -density 300 -quality 95 input.pdf[0-4] output-%03d.jpg
# Convert with white background (for PDFs with transparency)
convert -density 300 -quality 95 -background white -alpha remove \
input.pdf output-%03d.jpg
The -density flag sets the DPI, and -quality sets the JPEG compression quality (0-100). For multi-page PDFs, ImageMagick generates numbered output files. ImageMagick requires Ghostscript to be installed for PDF processing.
Pro Tip: When using ImageMagick, always set the -density flag before the input filename, not after. The order matters: -density 300 input.pdf processes at 300 DPI, while input.pdf -density 300 processes at the default 72 DPI and then resizes, producing inferior quality. The density must be set before the PDF is rasterized.
ImageMagick command-line conversion with quality settings
JPEG Compression: Understanding the Trade-Off
JPEG is a lossy format, meaning every JPG file involves a trade-off between image quality and file size. Understanding this trade-off helps you make informed choices about compression settings.
How JPEG Compression Works
JPEG compression divides the image into 8x8 pixel blocks and applies a mathematical transform (Discrete Cosine Transform) to each block. High-frequency details (sharp edges, fine text, detailed patterns) are the first to be reduced during compression. This is why heavily compressed JPGs show "artifacts" -- blocky patterns, color bleeding, and fuzzy text -- especially around sharp transitions.
The Impact on Text
Text in converted PDFs is particularly vulnerable to JPEG compression because text consists entirely of sharp, high-contrast edges -- exactly the type of detail that JPEG compression degrades first. A line of 10-point text that looks perfectly crisp at quality 95 can become noticeably fuzzy at quality 60.
For text-heavy PDFs, use quality 85 or higher. Below 85, compression artifacts around text become visible at 100% zoom. For PDFs that are primarily images (photographs, scanned documents), you can use lower quality settings (70-85) without noticeable degradation because the eye is less sensitive to compression artifacts in photographic content.
When to Use PNG Instead
If your PDF contains text, line art, diagrams, or flat-color graphics (as opposed to photographs), PNG will produce better quality at similar file sizes because PNG uses lossless compression. There are no compression artifacts, no fuzzy text, no color bleeding.
Use JPG when the PDF contains photographs or photographic content. Use PNG when the PDF is text, diagrams, screenshots, or flat graphics. For a comprehensive comparison, see our guide on how to convert PDF to images, which covers JPG, PNG, and TIFF formats in detail.
Batch Converting Multi-Page PDFs
Multi-page PDFs produce one image per page, which means a 50-page document generates 50 JPG files. Managing this output requires planning.
Naming Conventions
Most tools produce numbered output files: output-001.jpg, output-002.jpg, etc. Use zero-padded numbers (001, 002 instead of 1, 2) so files sort correctly in file managers. If the original PDF has meaningful page numbers (like a book starting at page 1), map the output numbering accordingly.
Consistent Quality Across Pages
When batch-converting, apply the same DPI and quality settings to all pages for consistency. Pages with different content types (a photograph-heavy page followed by a text-only page) will produce different file sizes at the same quality setting, but the visual quality will be consistent.
Automating Batch Conversion
For recurring conversion tasks (daily reports, weekly publications), automate with a script:
#!/bin/bash
INPUT_DIR="/path/to/pdfs"
OUTPUT_DIR="/path/to/images"
mkdir -p "$OUTPUT_DIR"
for pdf in "$INPUT_DIR"/*.pdf; do
base=$(basename "$pdf" .pdf)
convert -density 300 -quality 92 "$pdf" "$OUTPUT_DIR/${base}-%03d.jpg"
echo "Converted: $base"
done
For Python-based automation:
from pdf2image import convert_from_path
def convert_pdf_to_jpg(pdf_path, output_dir, dpi=300, quality=92):
images = convert_from_path(pdf_path, dpi=dpi)
for i, image in enumerate(images):
output_path = f"{output_dir}/page-{i+1:03d}.jpg"
image.save(output_path, 'JPEG', quality=quality)
return len(images)
Color Management
sRGB for Web
For images destined for web display, convert to the sRGB color space during export. sRGB is the standard color space for web browsers, and images in other color spaces (like CMYK or Adobe RGB) may display with unexpected color shifts in browsers. Most online converters handle this automatically.
CMYK Considerations
PDFs designed for professional printing may use the CMYK color space. When converting these to JPG (which uses RGB), a color space conversion occurs. The resulting colors may look slightly different from the original because the CMYK and RGB color gamuts do not overlap completely. Vibrant blues and greens that are achievable in RGB may look muted when converted from CMYK, and some rich printed colors cannot be exactly reproduced in RGB.
For print-production PDFs that need to maintain color accuracy, convert to TIFF with the original color space preserved rather than to JPG. If JPG is required, use a color-managed conversion tool (like Acrobat Pro or GIMP with color management enabled) to control the color space conversion.
Optimizing for Specific Use Cases
Social Media
Social media platforms apply their own compression to uploaded images. Uploading a highly compressed JPG results in double compression (your compression plus the platform's compression), producing noticeably degraded quality. Upload higher-quality JPGs (quality 90+) and let the platform handle its own compression.
For platform-specific image dimensions and formats, the general principle is: produce images at the platform's recommended resolution, which varies from roughly 1080px wide (Instagram) to 1200px wide (LinkedIn, Twitter/X).
Email Attachments
For email, balance quality against file size. Most email servers limit attachments to 10-25 MB, and recipients on mobile connections appreciate smaller files. Quality 80-85 at 150-200 DPI provides good readability for document pages while keeping file sizes manageable. For tips on compressing images for email, see our guide on best image format for email.
Web Publishing
For web pages and blog posts, optimize for fast loading without sacrificing readability. 150 DPI at quality 80-85 produces images that load quickly and look sharp on standard displays. For Retina/HiDPI displays, use 200 DPI or serve 2x resolution images with CSS sizing. For broader advice on web image optimization, see our guide on best image format for web and SEO.
Printing
For print reproduction, 300 DPI at quality 95 is the baseline. Large-format printing (posters, banners) can use 150-200 DPI because the viewing distance is greater. For detailed technical drawings or documents where fine print must be readable, 600 DPI ensures every detail is preserved. For comprehensive format selection for print jobs, see our guide on best file formats for printing.
Quality comparison showing optimal settings for different use cases
Troubleshooting Common Quality Issues
Fuzzy or Blurry Text
Cause: DPI too low or JPEG quality too low.
Fix: Increase DPI to 300 or higher and set JPEG quality to 85+.
Color Banding in Gradients
Cause: JPEG compression reduces color depth in smooth gradients.
Fix: Increase JPEG quality to 95+ or switch to PNG for gradient-heavy content.
White Lines Between Content Elements
Cause: Anti-aliasing artifacts from the rasterization process.
Fix: Enable anti-aliasing in your conversion tool settings. In ImageMagick, add -antialias to the command.
Dark or Muddy Colors
Cause: CMYK-to-RGB color space conversion without color management.
Fix: Use a color-managed conversion tool and ensure the correct ICC profiles are applied.
Black Background Instead of White
Cause: PDF pages with transparency (transparent background) rendered against a black default.
Fix: Set the background to white before conversion. In ImageMagick: -background white -alpha remove.
Frequently Asked Questions
What DPI should I use for PDF to JPG conversion?
For web and screen use, 150-200 DPI is sufficient. For printing, use 300 DPI minimum. For archival or professional use, 300-600 DPI provides maximum quality. When in doubt, use 300 DPI -- it covers most use cases and produces crisp, clear output.
Why does my converted JPG look worse than the PDF?
JPEG is a lossy compression format that reduces quality to save file size. The PDF renders text and vector graphics at infinite resolution, while the JPG rasterizes everything to fixed pixels. Use higher DPI and quality settings, or switch to PNG for lossless output.
Can I convert a multi-page PDF to a single JPG?
Most tools produce one JPG per page. If you need all pages in one image, you would need to convert to individual JPGs first, then stitch them together vertically or horizontally using an image editor. Alternatively, some tools offer a "long image" output mode that concatenates all pages into one tall image.
Should I use JPG or PNG for converted PDF pages?
Use JPG for pages containing photographs or photographic content. Use PNG for text-heavy pages, diagrams, screenshots, and flat graphics. PNG produces larger files but does not introduce compression artifacts, which is critical for text readability.
Wrapping Up
High-quality PDF-to-JPG conversion comes down to three settings: DPI, JPEG quality level, and color management. Set DPI to match your intended use (150-200 for web, 300 for print), set JPEG quality to 85 or higher for text-containing documents, and ensure correct color space handling for accurate colors.
The PDF to Image converter handles the conversion quickly in your browser with quality controls. For maximum flexibility and batch processing, command-line tools like ImageMagick and the Python pdf2image library provide full control over every parameter. And for professional workflows where quality is non-negotiable, Adobe Acrobat Pro's export settings give you the most granular control available.
Start at 300 DPI and quality 92 -- this covers the vast majority of use cases with excellent quality and manageable file sizes. Adjust downward only when file size is a hard constraint, and upward only when you are producing print-quality or archival output.
pdf to jpgimage qualitydpi settingspdf conversionimage export
About the Author
Emma Wilson
Digital media specialist with expertise in audio engineering, podcast production, and ebook publishing workflows.