Convert PDF Pages to JPG Images

Converting PDF to JPG renders each page of the document — text, vector graphics, and images together — into one compressed raster image per page. The tool on this page does that entirely in your browser at your choice of 72, 144, or 216 dpi; the PDF is never uploaded anywhere. Choose JPG when the pages are photo-heavy or when small files matter more than perfectly crisp edges; for text and line art, the lossless PNG converter is the better fit.

PDF to JPG — runs on your device

How it works

The converter uses pdf.js, the same rendering engine Firefox uses to display PDFs. It parses the file's object tree, then executes each page's content stream — the sequence of operators that place glyphs, stroke vector paths, and paint embedded images — onto an HTML canvas. The canvas dimensions come from the page's MediaBox multiplied by the scale you pick: a US Letter page (8.5×11 in) becomes 612×792 pixels at 72 dpi, 1224×1584 at 144 dpi, and 1836×2376 at 216 dpi. Everything the page contains is flattened into that single bitmap, which is why the output is a faithful picture of the page but no longer a document: the text becomes pixels and stops being selectable or searchable.

The canvas is then encoded to JPEG. JPEG compresses by cutting each 8×8 pixel block into frequency components (a discrete cosine transform) and discarding the high-frequency detail your eye notices least — extremely effective on smooth photographic gradients, where files shrink 5–10× against PNG with no visible difference. The same mechanism is JPEG's weakness on sharp edges: black text on white paper is almost pure high-frequency signal, so aggressive compression leaves faint ringing ("mosquito noise") around letterforms. That is the whole JPG-versus-PNG decision in one sentence: JPG for photographs, PNG for edges.

Because rendering happens per page, output is one JPG file per PDF page. And because the pipeline runs entirely in your tab — parse, render, encode, download — nothing is transmitted: the conversion works even with the network disconnected, and there is no server that could retain a copy of your document.

Worked example: a 14-page photo brochure at three resolutions

A 14-page travel brochure PDF (11.2 MB, full-bleed photographs on every page) was converted at each dpi setting. At 72 dpi the 14 JPGs totalled 1.9 MB (about 135 KB per page) — fine as thumbnails, visibly soft when zoomed. At 144 dpi the set came to 6.3 MB (450 KB per page), sharp enough for a web gallery and for viewing on a laptop screen at 100%. At 216 dpi the total was 13.1 MB (roughly 940 KB per page), slightly larger than the source PDF but crisp when projected or printed at snapshot size. For comparison, the same brochure exported as lossless PNG at 144 dpi produced 41 MB — six and a half times the JPG size, with no visible gain on photographic pages. Rendering all 14 pages took about 9 seconds at 144 dpi on a mid-range laptop.

Frequently asked questions

How do I convert a PDF to JPG images for free?

Use the converter at the top of this page: pick a PDF, choose a resolution, and each page downloads as a separate JPG. It runs entirely in your browser, so it is free and your file never leaves your device.

Which dpi should I choose when converting PDF to JPG?

72 dpi is fine for thumbnails and quick previews, 144 dpi suits screen viewing and web embedding, and 216 dpi is the choice for zooming or printing. Higher dpi triples or nine-folds the pixel count, so files grow accordingly.

Is JPG or PNG better for converting PDF pages?

JPG compresses photographic content into much smaller files but blurs sharp edges slightly, so choose it for photo-heavy pages, brochures, and anything you will email. For pages of crisp text, line art, or screenshots, lossless PNG keeps edges perfectly sharp.

Does converting a PDF to JPG keep the text selectable?

No. Rendering a page rasterizes it, meaning every letter becomes pixels in a photograph of the page. The words are still readable but can no longer be selected, copied, or searched; keep the original PDF if you need its text.

Are my files uploaded when I use this PDF to JPG converter?

No. The rendering runs in JavaScript inside your own browser tab, and the PDF never crosses the network. You can load this page, disconnect from the internet, and still convert.

Does each PDF page become its own JPG file?

Yes, one JPG per page, so a 10-page PDF produces 10 images. JPG has no multi-page variant, which is also why the reverse trip needs a JPG to PDF tool to reassemble pages into one document.

Related tools