Convert PDF to JPG without sending your file anywhere
When you actually need a JPG instead of a PDF
A PDF is a document. A JPG is a picture. Most of the time the PDF is what you want: it keeps text selectable, holds pages at a fixed size, and opens the same way everywhere. But there are places that will not take one.
- A form that only accepts JPG or PNG and rejects your PDF with "invalid file type".
- A slide deck or a presentation tool where you paste each page in as an image.
- A thumbnail, a preview image for a link, or a cover image for a listing.
- A chat app where sending a 40-page PDF is worse than sending the two pages someone actually asked about.
- A support ticket where the person on the other end wants to look at the page without downloading anything.
In all of those cases the file has to become a raster image. The only real question is how you get there without handing the document to a stranger's server. If your PDF holds a contract, an ID scan, a payslip or a medical note, "upload and convert" means a copy now sits on hardware you do not control. Converting in the browser avoids that completely.
What your browser actually does when it converts
There is no magic in it. A modern browser ships with a PDF renderer and a canvas. When you open a file in a client-side converter, the page is parsed locally, drawn onto a canvas at the size you asked for, and then exported as JPEG. The bytes you download are produced by your own machine.
That is also why the tool keeps working offline once the page has loaded. Pull your network cable out, pick a file, convert it. It still works, because there was never a server in the loop. A server-based converter obviously does not behave that way.
Which resolution to pick
The PDF to JPG tool offers 96, 150, 200 and 300 DPI. Those numbers are a real trade-off between sharpness and file size. Roughly, for an A4 page:
- 96 DPI: about 794 by 1123 pixels. Screen only. Fine for a phone preview, a thumbnail or a quick look in chat. Smallest files by a wide margin.
- 150 DPI: about 1240 by 1754 pixels. The default you want most of the time. Sharp on a laptop screen, still readable when printed small, and a fraction of the size of 300 DPI.
- 200 DPI: about 1654 by 2339 pixels. For when the image will be studied on a large screen or lightly edited afterwards. Noticeably heavier.
- 300 DPI: about 2480 by 3508 pixels. Print quality. This is the number a print shop means when it asks for high resolution, and it is roughly ten times the pixel count of 96 DPI.
File size follows pixel count. 300 DPI is not "safer" than 150 DPI in any general sense. It is bigger, slower to export, slower to upload to wherever it is going, and slower for the recipient to open. Choose it when the image will be printed or zoomed into, not as a blanket default.
A simple rule: if the destination is a screen, take 150 DPI. If the destination is a printer, take 300. If it is a chat message nobody will zoom into, 96 is enough.
Why multi-page exports arrive as a ZIP
A JPG file holds exactly one image. There is no concept of page two inside a JPEG, so a ten-page PDF cannot become a single JPG unless all ten pages are stacked into one very tall image, which is unusable in practice.
Browsers also will not let one click quietly trigger ten separate downloads, so the standard approach is to bundle the images into a ZIP archive and hand that over. You unzip it and get page-01.jpg, page-02.jpg and so on, in order. A single-page PDF usually skips the ZIP and hands you the JPG directly, which is why a two-page document behaves differently from a one-page one.
Honest limits
The output is a picture. Any text inside it stops being text. You cannot select it, search it, copy it, or have a screen reader read it out. If you need searchable output you want text extraction, not image conversion, and no amount of DPI fixes that.
Large files take time. A 200-page colour document at 300 DPI means hundreds of millions of pixels rendered on your laptop, and that costs real seconds and real memory. Your browser is one device with whatever headroom it has; an older phone will feel it. There is also no OCR here. A scanned PDF comes back as a scanned image, still without a text layer.
Practical tips
Do not screenshot the page. It is tempting: open the PDF, grab a screenshot, crop it. The result is whatever your screen happened to be showing, at your screen's resolution, with the viewer's zoom level baked in and possibly the toolbar in the frame. Exporting the page renders it at a known DPI straight from the document's own data, so it is sharper and correctly sized. On text-heavy pages the difference shows immediately.
Do not reach for 300 DPI on a long document you only need on screen. A 200-page report converted at 300 DPI is a large ZIP full of large images that you will only ever view at screen size. 150 DPI, or 96 for thumbnails, gives you files you can actually email. If you only need a few pages, cut the rest first with Remove pages, then convert the short version. If the source PDF is already enormous, compressing it first makes the conversion faster too, and merging several PDFs into one before converting saves you from juggling multiple ZIP files afterwards.
Check the page count before you start. Converting 200 pages for a form that asked for one wastes a couple of minutes and a pile of disk space. The free tools on the site are Merge PDF, Split PDF and Compress PDF; the Pro tools, including PDF to JPG, come with 3 free trial uses, then 5.90 EUR per month, cancel anytime, paid by PayPal, Visa or Mastercard. If you also work with databases, the main tool turns SQL CREATE TABLE statements into an interactive ER diagram, also without uploading anything.
Try it, nothing gets uploaded
Pick a resolution, export the pages, download them as images. The PDF never leaves your device.
Open the PDF tools