PDF to JPG and Back: Converting Between Documents and Images

6 min read
conversionimagesworkflow

"I need the images from this PDF" means two completely different things depending on who says it. Sometimes it means a picture of each page — for a slide, a thumbnail, a preview. Sometimes it means the actual photographs embedded inside the document, at whatever resolution the author put them there. Different jobs, different tools, very different output.

Rendering pages versus extracting images

Render pages to imagesExtract embedded images
ToolPDF to ImagesExtract PDF images
What you getOne image per page, exactly as the page looksThe individual photos and graphics the page is built from
Includes text and layoutYes — flattened into pixelsNo — only the picture objects
ResolutionWhatever you choose, at render timeWhatever the original file contains
Use it forPreviews, slides, social posts, image-only sharingRecovering source photos, reusing a chart or logo

The distinction matters most when someone sends a scanned brochure and asks for "the photos". Rendering gives you pages with text baked in around the pictures. Extracting gives you the photos themselves, often at higher resolution than they appear on the page — sometimes at print resolution the designer never intended to publish.

Converting PDF pages to JPG or PNG

  1. 1Open PDF to Images and add your file

    Go to PDF to Images. Pages are rendered in your browser using the same engine browsers use to display PDFs, so what you get matches what you see.

  2. 2Pick a format

    JPG for anything photographic — smaller files, no transparency. PNG for text-heavy pages, screenshots, charts, and diagrams — lossless, so type stays crisp with no compression fuzz around the letters.

  3. 3Pick a resolution

    This is the decision that matters. 72–96 DPI for a web thumbnail, 150 DPI for on-screen viewing, 300 DPI if the image will be printed. Rendering an A4 page at 300 DPI produces a 2480×3508 image — sharp, and around 2 MB each as JPG.

  4. 4Convert and download

    Multiple pages come back as a set, typically bundled into a ZIP.

Pulling the original images out of a PDF

Extract PDF images walks the document's image objects and gives you each one as its own file, at its stored resolution. It is the right tool when you want to reuse a photograph, recover a chart from a report, or rescue images from a document whose source files are long gone.

Two things to expect. First, you will often get more images than the page appears to contain: designers composite, and one visual can be several overlapping objects. Second, scanned documents produced by some software store each page as dozens or hundreds of image strips, so extraction returns fragments rather than whole pages. In that case, render the pages instead — that is what you actually wanted.

Building a PDF from images

The reverse trip is the more common office task: photographs of receipts, a stack of scans, screenshots for a bug report, or pages someone photographed with a phone because there was no scanner. Images to PDF combines them into one document.

A few habits make the difference between a document that looks assembled and one that looks thrown together:

  • Name files so they sort correctly before you add them. 01, 02, 03 with a leading zero. This is the same trick that fixes merge ordering, and it fixes it here too.
  • Crop before you convert. A photo of a receipt on a wooden desk becomes a page that is mostly desk. Cropping in your phone's photo app takes seconds and improves the result more than any setting in the converter.
  • Shoot in even light, straight on. Shadow across the page and keystone distortion from an angled camera are the two things that make phone scans look like phone scans.
  • Use one page size. Mixed orientations produce a document that flips shape as you scroll, which looks wrong when printed.
  • Compress afterwards if it is going by email. Ten phone photos are easily 40 MB. Compress PDF at 150 DPI grayscale turns a set of scanned documents into a few megabytes with no meaningful loss.

The thing everyone forgets: images are not searchable

When you render a page to an image, or build a PDF out of photos, the text in the result is pixels. Nobody can search it, select it, or copy an address out of it. A screen reader finds nothing. If someone later needs to find a clause by keyword, they will have to read every page.

That is fine when the goal is a visual — a preview, a slide, a picture for a post. It is a real loss when the document is a contract or a report someone will need to work with. Where you have a choice, keep the text-based PDF as your master copy and treat images as an export, not a replacement.

Choose JPG or PNG and the resolution you need. Rendering happens in your browser, so the document is never uploaded.

Convert a PDF to images

Other conversions worth knowing about

The PDF Converter covers the wider set. Into PDF: images, plus text-bearing formats — TXT, Markdown, CSV, HTML, RTF, and Office and OpenDocument files (DOCX, XLSX, PPTX, ODT, ODS, ODP). Out of PDF: plain text, HTML, PNG, and JPG.

Be realistic about what conversion into PDF preserves. Office formats are converted content-first: the text, its structure, and its styling carry across, but the exact layout will not match what Word or PowerPoint renders, because reproducing that faithfully means reimplementing their layout engines. For a document where the layout is the point, export to PDF from the application that created it and use these tools on the result.

Frequently asked questions

What resolution should I use when converting PDF to JPG?

150 DPI for on-screen viewing, 300 DPI if the image will be printed, and 72–96 DPI for web thumbnails. Higher is not automatically better — a 600 DPI render of an A4 page is roughly 5000×7000 pixels and slow to handle for no visible gain on screen.

Should I convert PDF pages to JPG or PNG?

PNG for pages that are mostly text, charts, or screenshots — it is lossless, so edges stay sharp. JPG for photographic pages, where it is far smaller with no visible difference. When in doubt on a text page, choose PNG.

How do I get the original images out of a PDF instead of page pictures?

Use [Extract PDF images](/en/extract-pdf-images/), which returns the embedded image objects at their stored resolution rather than rendering the page. Note that scanned documents are sometimes stored as many small strips, in which case rendering the page is more useful.

Can I convert a PDF to Word?

Not with this site — the converter outputs text, HTML, PNG, and JPG from a PDF. Exporting to plain text or HTML gets the content out in an editable form, which is often enough. Converting to a fully formatted Word file requires reconstructing layout that a PDF does not record.

Why is my image-based PDF so large?

Because phone photos are 8–12 megapixels each and get embedded at full resolution. Ten of them is easily 40 MB. Compress the finished PDF at 150 DPI — for scanned documents, add grayscale — and it will typically drop by 80% or more.

Does converting a PDF to images lose quality?

It changes the nature of the file rather than degrading it: vector text rendered at 300 DPI looks excellent, but it is now fixed at that resolution and no longer selectable or searchable. Zooming past the render resolution shows pixels, where the original PDF would have stayed sharp.

More guides