PDF to JPEG
Convert PDF pages to high-quality JPEG images (200 DPI). Select up to 20 files.
PDF files only, up to 1GB each, max 20 files
What this does
Drop in one or more PDFs and the tool renders each page to a JPEG image, packs the results into a ZIP, and hands the file back. The PDFs never leave your browser — rendering happens locally with PDF.js, and the ZIP is assembled in memory before download. For sensitive documents (contracts, IDs, medical records) this matters: nothing is transmitted to any server.
When you'd convert a PDF to images
- Embedding pages on the web. Many web layouts can show an image but not a PDF inline. Converting to JPEG gives you something every browser can display.
- Stripping interactivity. A PDF can contain JavaScript, fillable form fields, and embedded files. Rendering to a flat image removes all of that — what you see is all that's there. Useful when sending a "final" version to someone who might otherwise edit it.
- Image-only OCR pipelines. Many OCR services accept images but not PDFs.
- Social media previews. Slideshare-style "swipe through pages" carousels on Twitter, LinkedIn, Instagram.
- Compatibility with old systems. Some review tools, ticketing systems, or e-discovery platforms accept images but not PDFs.
- Cleaning up scanned documents. If you received a PDF that's already just scanned images, extracting them lets you process the images directly instead of going through the PDF wrapper.
What you lose in the conversion
A PDF holds vector text, fonts, and shapes that scale crisply to any zoom level. A JPEG is a fixed grid of pixels — once rasterized, the text is no longer searchable, no longer selectable, and no longer scales without blur. If you'll need any of that, keep the PDF and use this only for cases where the image really is what you need.
JPEG is also a lossy format. Each save introduces compression artifacts, especially around sharp edges like text. For document scans where text crispness matters, PNG (a lossless format) is technically a better fit than JPEG; this tool produces JPEG because the file size is dramatically smaller and the difference is rarely noticeable for prose on white backgrounds.
Resolution and file size
Higher rendering resolution means crisper output and bigger files. The page is rendered at a default DPI that's a good middle ground for screen viewing — sharp at typical zoom, not absurdly large. If the output looks soft when you zoom in further, you'd want to render at a higher DPI; if the files are huge for what you need, lower DPI saves space.
Multi-page PDFs
Each page becomes its own JPEG, named with the original filename and a page number. A 12-page PDF produces 12 JPEGs. The ZIP keeps them grouped by source PDF when you upload several at once, so you don't have to untangle pages from different documents after extraction.
Practical tips
- If a PDF is password-protected, decrypt it first — PDF.js can't read encrypted files.
- Very large PDFs (hundreds of pages) can be slow to render in a browser. Consider splitting first.
- For a single page from a long document, it's faster to use a PDF viewer's "screenshot" or "save as image" option than to convert the whole file.
- The output is JPEGs, not searchable text. If you need text out of a PDF, copy it from the PDF directly or use an OCR step on the resulting images.