Quick answer
To convert a PDF to JPG: upload your PDF to our PDF to JPG converter, choose your quality settings, and download the images. Each PDF page becomes a separate JPG file.
For multi-page PDFs, you'll get a ZIP with one JPG per page. No software install needed it works in your browser.
Why convert PDF to JPG?
PDFs are great for documents, but many situations require images instead.
Social media doesn't accept PDFs. Instagram, Twitter/X, Facebook, and most platforms only allow image uploads. Converting a PDF page to JPG lets you share document content as a post or story.
Email previews. Attaching a JPG shows an inline preview in most email clients. PDF attachments require the recipient to open a separate viewer.
Presentations. Inserting a PDF page into PowerPoint or Google Slides requires converting it to an image first. A JPG loads faster and avoids layout issues.
Design work. Dropping a PDF page into Figma, Canva, or Photoshop as a JPG is simpler than importing the PDF directly especially when you only need one page.
Messaging apps. WhatsApp, Telegram, and iMessage display images inline but require extra steps to preview PDFs.
Websites that only accept images. Many upload forms for profiles, listings, portfolios reject PDF files entirely.
PDF vs JPG key differences
| Feature | JPG | |
|---|---|---|
| Content type | Mixed text, vectors, images, fonts | Pixels only (raster image) |
| Editability | Text and layout editable in Acrobat | Cannot edit content, only crop/resize |
| File size | Usually smaller for text-heavy docs | Depends on DPI and compression |
| Compatibility | Needs a PDF reader | Opens on any device, browser, app |
| Transparency | Supports transparent elements | No transparency background becomes white |
| Quality loss | None (vector content scales perfectly) | Lossy compression each save reduces quality |
| Multi-page | Yes single file, many pages | No one image per file |
| Web/social use | Cannot embed directly in most platforms | Universal works everywhere |
Method 1: Online converter (fastest, no install)
For most people, an online converter is the fastest way.
Upload your PDF to our PDF to JPG converter. Each page is rendered as a separate JPG. For multi-page PDFs, you download a ZIP with all images.
This works on any device Windows, Mac, phone directly in the browser. No software to install, no account to create.
Our converter uses pdftocairo (poppler) on the backend, which produces better text anti-aliasing than most competitors that use Ghostscript or ImageMagick.
Method 2: Windows Snipping Tool (free, built-in)
Windows has no built-in "Export to JPG" for PDFs, but the Snipping Tool works as a workaround.
Open your PDF in any viewer (Edge, Adobe Reader, Chrome). Press Windows + Shift + S to activate the Snipping Tool. Select the area you want to capture. Save the screenshot as JPG.
This is manual and only captures what's visible on screen you can't set a specific DPI or batch-process multiple pages. But it's free, requires no install, and works for grabbing a single page quickly.
Method 3: Mac Preview (free, built-in)
macOS Preview can export PDF pages as JPEG natively.
Open the PDF in Preview. Go to File, Export. Choose JPEG as the format. Adjust the quality slider and click Save.
This exports one page at a time. For multi-page PDFs, you'll need to select each page individually or use Automator to batch the process.
Preview gives you a quality slider but no explicit DPI control. For most uses (email, presentations), the default output is sufficient.
Method 4: Adobe Acrobat (paid, best quality control)
Adobe Acrobat Pro gives the most control over PDF-to-JPG conversion.
Open your PDF. Go to File, Export To, Image, JPEG. In the settings, you can specify exact DPI (72–600+), JPEG quality level, and color space.
Acrobat renders PDFs using the full PDF 2.0 specification (ISO 32000-2:2020), which means it handles fonts, vectors, transparency, and embedded color profiles more accurately than free tools.
The downside: Acrobat Pro requires a paid subscription. For occasional conversions, it's overkill use an online converter instead.
Method 5: Command line pdftocairo / Python (batch processing)
bashFor developers or anyone converting many PDFs at once, command-line tools are the fastest approach.
pdftocairo (part of poppler-utils) produces the best quality for text-heavy PDFs. It renders sharper text with better anti-aliasing than Ghostscript or ImageMagick:
pdftocairo -jpeg -r 300 input.pdf output
This converts every page to JPG at 300 DPI. Each page gets a numbered filename (output-1.jpg, output-2.jpg, etc.).
pdftoppm is an alternative from the same poppler package:
pdftoppm -jpeg -r 300 input.pdf output
For batch processing all PDFs in a folder:
find . -name "*.pdf" -exec pdftoppm -jpeg -r 300 {} {} \;
Ghostscript also works but is generally slower:
gs -sDEVICE=jpeg -r300 -sOutputFile=page-%03d.jpg input.pdf -dNOPAUSE -dBATCH
In Python, the pdf2image library wraps poppler and makes it scriptable:
from pdf2image import convert_from_path
images = convert_from_path('input.pdf', dpi=300)
for i, img in enumerate(images):
img.save(f'page-{i+1}.jpg', 'JPEG', quality=85)
Key technical note: pdftocairo typically produces better anti-aliasing on text than Ghostscript. If your PDFs are text-heavy documents, pdftocairo is the better choice.
DPI and quality settings what actually matters
DPI (dots per inch) controls how many pixels your output JPG contains. Higher DPI means more pixels, larger file size, and sharper details.
72 DPI screens, web, email. This is the standard screen resolution. A letter-size PDF page at 72 DPI produces an image of about 612×792 pixels. Fine for web previews and email attachments.
150 DPI presentations. Enough detail for slides that will be projected or displayed on screen. Images can be scaled up moderately without visible pixelation.
300 DPI printing. The minimum standard for quality print output. Text and fine details remain crisp. This is the default recommendation for most conversions.
600 DPI professional print, archival. Only needed for large-format printing or when preserving maximum detail in technical documents. File sizes are significantly larger.
JPEG quality (1–100) is separate from DPI. Quality controls how aggressively the image is compressed. 80–90 is the sweet spot: noticeably smaller files than 100, with no visible quality loss for most content. Below 70, compression artifacts become visible especially around text edges.
Important: if your PDF is a scanned document, setting DPI higher than the original scan resolution adds no real detail. You're just upscaling existing pixels. A document scanned at 200 DPI and exported at 600 DPI will look the same just with a larger file.
DPI reference which setting for which use case
| DPI | Use case | Typical file size (per page) | Quality |
|---|---|---|---|
| 72 | Web, email, screen preview | 100–300 KB | Screen-only |
| 150 | Presentations, slides | 300–800 KB | Good for display |
| 300 | Printing, documents | 1–4 MB | Print standard |
| 600 | Professional print, archival | 4–12 MB | Maximum detail |
JPG vs PNG when to choose which
JPG is the right choice for most PDF conversions sharing, email, presentations, social media. File sizes are smaller and compatibility is universal.
Choose PNG instead when your PDF has transparent elements (logos, diagrams with no background), you need pixel-perfect quality without any compression artifacts, or the image will be edited further in design software.
JPG does not support transparency any transparent areas in the PDF become white. PNG preserves transparency and uses lossless compression, so quality is never reduced. But PNG files are significantly larger.
Rule of thumb: JPG for photos and sharing, PNG for design and transparency. Use our PDF to PNG converter when you need the lossless option.
Frequently asked questions
Can I convert PDF to JPG for free online?
Yes. Upload your PDF to an online converter like convertifyapp.net/pdf-to-jpg, and download the JPG images. No software install or account needed. Most online tools have file size limits but work well for standard documents.
How do I convert a multi-page PDF to JPG?
Each PDF page becomes a separate JPG file. Online converters typically return a ZIP archive with all pages numbered sequentially. Command-line tools like pdftoppm and pdftocairo do the same automatically, adding page numbers to filenames.
What DPI should I use for PDF to JPG conversion?
72 DPI for web and email, 150 DPI for presentations, 300 DPI for printing (the standard recommendation), 600 DPI for professional or archival use. Higher DPI means larger files but sharper output unless the PDF is a scan, in which case DPI above the original scan resolution adds no real detail.
Why does my JPG look blurry after converting from PDF?
Two common causes. If the PDF was a scanned document with low resolution, the source pixels are already blurry higher DPI won't fix that. If the PDF was text-based, try exporting at 300 DPI or higher with quality set to 85-100. Also, some rendering engines produce softer text than others pdftocairo gives sharper text anti-aliasing than Ghostscript.
Does converting PDF to JPG lose quality?
Yes, to some degree. JPEG uses lossy compression, so some detail is always lost. At quality 85-95 and 300 DPI, the loss is imperceptible for most content. The bigger quality issue is rasterization vector text and graphics in the PDF become fixed pixels, so they can no longer scale without blurring.
What happens to transparent elements in the PDF?
They become white. JPG does not support transparency, so any transparent layers, backgrounds, or elements are flattened against a white background during conversion. If you need to preserve transparency, convert to PNG instead.
How large will the JPG files be?
At 300 DPI, a single letter-size PDF page typically produces a JPG between 1 and 4 MB for text documents, or 4-8 MB for image-heavy or full-color pages. Lower DPI or higher JPEG compression reduces file size but also reduces quality.
How do I convert JPG back to PDF?
Use an image-to-PDF converter. Upload one or more JPG files and combine them into a single PDF document. Our JPG to PDF tool at convertifyapp.net/jpg-to-pdf handles this, including page ordering and quality settings.