Convert the First Page of a PDF to PNG or pick any page
Turn a PDF's first page into a PNG or JPG right in your browser — no converting the whole document, no upload. Drop several PDFs and get the first page of each, at up to 300 DPI.
Drop PDFs — the first page converts
or click to choose · several PDFs at once is fine
- 100% in your browser
- No upload, no signup
- No size or count limit
- Pick any page
Why Convert Just the First Page of a PDF?
Most of the time you don't need a whole PDF as images — you need one page, and it is almost always the first page. The cover of a report to paste into an email. A preview image for a document library. The title page of an ebook for a landing page. Yet every mainstream converter forces the same clumsy routine: convert all forty pages, wait, download a ZIP, and fish out page one. None of the big tools even let you choose a page before converting, let alone offer a dedicated first-page option.
This tool flips that workflow. Drop in a PDF and the first page renders instantly as a preview; one click exports it as a PNG or JPG at the resolution you choose. Need page three instead? Step the page selector — the preview follows. Need the first page of twenty different PDFs? Drop them all in at once and download every cover image in a single ZIP, something no other online converter currently does.
Because only the page you asked for is rendered, the conversion is fast even for huge documents — a 500-page manual takes no longer than a one-page flyer. And since everything happens in your browser, the document itself never travels anywhere.
First Page, Cover or Thumbnail — What Do You Actually Need?
Converting the first page of a PDF to PNG means rendering just page one of the document as a standalone image — the standard way to create a cover preview or thumbnail without converting the entire file.
People reach for this conversion under different names. A cover image is the first page used as a visual stand-in for the document — in an email, a Slack message, a Notion page or a slide. A PDF thumbnail is the same image scaled down, usually for a document library or file listing where dozens of PDFs each need a small preview. And sometimes the goal is simply to extract one specific page — a chart on page 7, a signature page at the end — as a shareable image.
This tool covers all three: it defaults to the first page, lets you step to any other page, and the resolution presets span everything from small thumbnails (72 DPI) to print-grade covers (300 DPI). The output is a standard PNG or JPG that works anywhere an image works.
If you genuinely need every page of the document as images, this is the wrong tool — use the full PDF to PNG converter instead, which renders all pages and packs them into a ZIP.
How to Convert the First Page of a PDF to PNG in 3 Steps
No software, no account, and no converting pages you don't need. Here is the whole process — it takes about ten seconds.
Drop in your PDF (or several)
Drag PDF files onto the box above or click to browse. Each file's first page renders as a preview right away — nothing is uploaded, so even very large documents load instantly.
Pick the page, format and resolution
Page 1 is selected by default; use the stepper to choose a different page and the preview updates. Then pick PNG or JPG and a resolution — 150 DPI for the web, 300 DPI for print.
Convert and download
Click Convert and download your image — or, with several PDFs, grab the first page of each in one ZIP. The filename tells you the source document and page number.
Pro tip: Making a cover image for print or a retina display? Choose 300 DPI — an A4 first page comes out at roughly 2480 × 3508 pixels, sharp enough for full-page printing. Most online converters stop at 220 DPI or lower.
What People Use a First-Page PNG For
One page as one image turns out to be one of the most common PDF jobs there is. These are the six requests this tool answers every day.
Report covers in email & Slack
Paste the first page of a proposal or report as a picture so recipients see what they're opening — far more inviting than a bare .pdf attachment.
Document-library thumbnails
Drop in every PDF in your library and get a preview thumbnail for each, in one ZIP. At 72 DPI the images are small enough to use as-is in listings.
Ebook & lead-magnet covers
Your ebook's title page becomes the cover image for the landing page, the email campaign and the social post — at 300 DPI it stays sharp everywhere.
Slide & course previews
Teachers and course creators export the title slide of handouts and decks as an image for the course catalog or LMS preview.
Notion, wikis & CMS embeds
Many editors embed images more gracefully than PDFs. A first-page PNG gives every linked document a clean visual anchor.
One page where PDF isn't accepted
Some forms and uploaders only take images. Export exactly the page they need — the signature page, the certificate, the chart — without sharing the rest.
Which Resolution Should You Pick?
DPI decides how many pixels your image gets per inch of paper. Pick by destination, not by habit — here is what each preset produces for a standard A4 page.
| Preset | A4 output size | Best for | Typical file size |
|---|---|---|---|
| 72 DPI · Screen | 595 × 842 px | Thumbnails, file listings, chat previews | Smallest |
| 150 DPI · Web | 1240 × 1754 px | Web pages, email covers, Notion embeds | Moderate |
| 300 DPI · Print | 2480 × 3508 px | Printing, retina displays, zoomable covers | Largest |
When in doubt, 150 DPI is the sweet spot: crisp on every screen and light enough to email. Go to 300 DPI the moment paper or a high-density display is involved — and note that several popular converters cap out at 220 DPI, below print quality.
Why This Runs in Your Browser, Not on a Server
Think about what people pull first pages from: contracts, bank statements, invoices, signed agreements, internal reports. Every mainstream converter asks you to upload those documents to its servers and trust a deletion promise — "removed after one hour", "deleted within 2 hours". In community forums, users converting bank statements for government portals explicitly warn each other against exactly that.
This tool never asks for that trust. The PDF is parsed and the page rendered by pdf.js inside your own browser tab — the same engine Firefox uses to display PDFs. The document never crosses the network, which is also why there is no file-size cap and no page limit: a 500-page PDF costs us nothing, because we never see it.
On-device only
Parsing and rendering happen in your browser. No document is ever sent to us or anyone else.
No limits
No size cap, no page limit, no daily quota — because there is no server doing the work.
Nothing stored
We cannot keep what we never receive. Close the tab and every trace of your document is gone.
The claim you can verify yourself
Load this page, then disconnect from the internet — airplane mode works too. Now drop in a PDF and convert its first page. It still works, because the conversion never needed a server in the first place.
For Developers: Command-Line Equivalents
Automating first-page thumbnails for a pipeline or a server? The browser tool is the fastest option for one-off and small-batch jobs, but for scripted workflows these are the standard commands — we'd rather show them than pretend they don't exist.
pdftoppm -png -f 1 -l 1 -r 150 input.pdf coverThe classic. -f/-l limit it to page 1, -r sets the DPI. Outputs cover-1.png.
pdftocairo -png -singlefile -f 1 -l 1 -r 150 input.pdf cover-singlefile drops the page-number suffix, giving you a clean cover.png.
magick -density 150 "input.pdf[0]" cover.pngThe [0] index selects the first page (zero-based). Requires Ghostscript installed.
For a handful of files — or whenever the PDFs are sensitive and shouldn't touch a server at all — drag-and-drop above beats writing a loop. For thousands of files on a backend, use Poppler.
Frequently Asked Questions
Can I really convert only the first page of a PDF, not the whole document?⌄
Can I get the first page as a JPG instead of PNG?⌄
Can I convert a specific page that isn't the first?⌄
Can I batch-convert the first page of many PDFs at once?⌄
What's the best resolution for a PDF thumbnail?⌄
Is my PDF uploaded to a server?⌄
How do I do this on Mac or Windows without installing software?⌄
What if I need every page of the PDF as images?⌄
Ready to grab that first page?
Drop your PDF into the converter — the first page is one click from being a PNG. Free, private, no limits.
Back to the converterRelated Articles
Deepen your understanding of PDF to PNG conversion with our latest guides and reviews
Convert PDF to PNG without Losing Quality (Step by Step)
Professional techniques for maintaining maximum quality during PDF to PNG conversion. Advanced settings, DPI optimization, and quality control methods.
Read articlePDF to PNG vs PDF to JPG: Which Format Should You Choose?
Detailed comparison of PNG and JPG formats for PDF conversion. File sizes, quality differences, use cases, and decision-making guide.
Read articleHow to Convert PDF to PNG Online (Free & Fast Methods)
Complete guide to converting PDF to PNG online for free. Compare the 5 best converters, learn step-by-step processes, advanced tips, and troubleshooting.
Read articleRelated Conversion Tools
Explore more tools in our comprehensive file conversion suite