How to Convert PDF Pages to Images (JPG or PNG)
Methods for turning PDF pages into images — covering DPI settings, format choice (JPG vs PNG), and tools from browser-based to command line.
When You Need PDF Pages as Images
Presentations, social media posts, print proofs, and web content all demand images — not PDFs. Converting a PDF to JPG or PNG gives you files that work everywhere, from Slack messages to Instagram stories.
Methods for Converting PDF to Images
1. Browser-Based Conversion
FileKit's PDF to Images tool renders each page using Mozilla's pdf.js engine and exports as JPG or PNG. Choose between 96 DPI (web preview), 150 DPI (readable), and 300 DPI (print quality). Everything happens locally in your browser.
2. Adobe Acrobat
File → Export To → Image gives you format and resolution control. Best for production workflows where you need consistent output across hundreds of files.
3. Command Line with ImageMagick
magick -density 300 input.pdf page-%03d.pngThe -density flag sets DPI before rendering, producing sharp output. Pair with -quality 85 for JPG to balance size and clarity.
JPG vs. PNG: Which Format?
- JPG — Smaller files, ideal for photo-heavy pages. Lossy compression means some quality trade-off, but at quality 85+ it is invisible.
- PNG — Lossless, sharp text rendering, supports transparency. Best for diagrams, charts, and text-heavy pages. Files are typically 3–5x larger than JPG.
Resolution Guide
- 96 DPI — Screen previews, thumbnails, email attachments
- 150 DPI — Readable documents, presentations, web content
- 300 DPI — Print quality, archival, professional output