explainer
How to Convert a PDF to JPG Without Uploading It
By the LazyTools team · Published 2026-07-12 · Updated 2026-07-12 · 3 min read
You need one page of a PDF as an image — for a slide, a forum post, a preview. You search “PDF to JPG,” click the first result, and upload your contract to a server you know nothing about. That last step is the problem. Converting a PDF to an image is simple enough to do entirely on your own machine, and for anything sensitive, that’s exactly where it should happen.
Why “upload to convert” is the wrong default
The big-name PDF sites (iLovePDF, Smallpdf, Adobe’s online tools and the rest) do the conversion on their servers: you upload the PDF, they render it and send images back. For a meme or a blank form, fine. For a signed contract, a bank statement, a passport scan or a medical record, you’ve just handed a copy to a third party — where it may be cached, logged or retained per their policy. Once it’s uploaded, you can’t take it back.
The good news: turning a PDF page into an image is pure rendering — the exact thing your browser already does to display a PDF. There’s no reason it has to leave your device.
Converting in the browser
A client-side converter uses a PDF rendering engine (the same open-source pdf.js that powers in-browser PDF viewing) to draw each page onto a canvas, then exports that canvas as a JPG or PNG. It all happens locally in JavaScript — no upload, works offline.
The PDF to JPG tool does exactly this: open a PDF, pick your format and resolution, and each page becomes an image you can download individually or all at once. The file never touches a server. (Going the other way — stitching images into a PDF — is the JPG to PDF tool.)
JPG or PNG?
- JPG uses lossy compression: smaller files, and perfectly good for photographic pages or scanned documents where a little softness doesn’t matter. You can trade quality for size.
- PNG is lossless: it keeps text edges, thin lines and diagrams crisp, but the files are bigger.
Rule of thumb: PNG when crispness matters (text-heavy pages, tables, technical drawings), JPG when file size matters (photos, quick previews, email attachments).
Choosing the resolution
Resolution is the sharpness–size trade-off:
- 72 dpi — fine for quick on-screen viewing.
- 144 dpi — good general quality for most uses.
- 216 dpi (or higher) — for printing, or to keep the text on a scanned document readable.
Zooming in later won’t add detail that wasn’t captured, so if you might print or crop, render high.
One thing to remember
Converting a page to an image turns the text into pixels. The result looks identical but is no longer selectable, searchable or editable — it’s a picture. If you need the words back as text, that requires OCR (optical character recognition), a separate step. For sharing a page as an image, that’s exactly what you want; just don’t expect to copy-paste text out of the result.
Need to shrink the images afterward? Run them through the image compressor — also entirely in your browser. Every LazyTools file tool works this way on purpose: the document you’re converting is the one that should never be uploaded.
The PDF to JPG tool renders pages with pdf.js entirely in your browser; the PDF is never uploaded. Output images are rasterised, so text is not selectable (use OCR for that). This is general how-to information. Source: pdf.js — the Mozilla PDF rendering engine used for in-browser rendering.
Frequently asked questions
How do I convert a PDF to JPG?
Open the PDF in a converter, choose JPG and a resolution, and each page is turned into an image you can download. A browser-based tool does this locally with a PDF rendering engine, so nothing is uploaded — you just pick the format and save the pages.
Can I convert a PDF to JPG without uploading it?
Yes. A client-side tool renders the PDF's pages to images directly in your browser using JavaScript, so the file never leaves your device and it works offline. That's the safe choice for contracts, statements, IDs or anything confidential.
Should I convert to JPG or PNG?
JPG makes smaller files and is fine for photos and scanned pages. PNG is lossless and stays sharp for text, tables and line art, at the cost of a larger file. Choose PNG when crispness matters, JPG when file size does.
What resolution should I use for a PDF to image?
72 dpi is enough for on-screen viewing, 144 dpi for good general quality, and 216 dpi or higher for printing or keeping scanned text readable. Higher resolution means sharper images but larger files.
Will the text still be selectable after converting to JPG?
No — converting a page to an image turns the text into pixels, so it's no longer selectable or searchable. To recover editable text from an image you'd need optical character recognition (OCR), which is a separate process.
Why would I convert a PDF to images?
To embed a page in a slide or document, post it where PDFs aren't supported, attach a preview, or send a single page as a picture. Images are universally viewable, which PDFs aren't always.