How it works
The PDF to PNG tool renders every page of a PDF document to a full-resolution PNG image and packages all images in a ZIP file for download. Unlike JPEG conversion, PNG uses lossless compression — every pixel of text, line art, and vector content is reproduced exactly, with no compression artifacts. This makes PNG the correct format when the output will be used in image editing, inserted into documents, or displayed at any zoom level.
When to use PNG vs JPEG for PDF pages: use PNG when the page contains primarily text, diagrams, line art, charts, or UI screenshots — these elements are sharp in PNG and degrade visibly in JPEG due to block compression artifacts. Use JPEG when the page is primarily photographic content (landscape photos, product photos) and file size is more important than perfect sharpness.
Rendering scale: pages are rendered at 2× their natural PDF coordinates (approximately 144 DPI equivalent for a standard 72-DPI PDF unit scale). This produces images approximately 1224×1584px for a US Letter page — suitable for web display, document thumbnails, and intermediate editing.
Output naming: each file is named page-001.png, page-002.png, etc. (zero-padded to three digits for correct alphabetical ordering in file explorers).
Large PDFs: rendering is sequential — PDF.js processes one page at a time. A 50-page document takes approximately 10–30 seconds depending on page complexity and device CPU speed. The progress counter shows the current page.
Privacy: all page rendering uses PDF.js in the browser. No page data is uploaded.
Frequently Asked Questions
- PNG uses lossless compression — every pixel of text, line art, and diagram is reproduced exactly without compression artifacts. JPEG's lossy compression introduces visible block artifacts around sharp edges like text characters and fine lines. For pages containing text or diagrams, PNG is always the correct choice. Use JPEG only for pages that are predominantly photographic images where the artifacts are less visible and file size matters more than sharpness.
- Pages are rendered at 2× the native PDF coordinate scale, which is equivalent to approximately 144 DPI for standard PDF documents. A US Letter page (8.5×11 inches) produces an image of approximately 1224×1584 pixels. This is suitable for web display, document management previews, and moderate-quality print. For higher-resolution output (300 DPI for professional print), a desktop tool like Ghostscript with -r300 flag is more appropriate.
- Files are named page-001.png, page-002.png, page-003.png, etc. with zero-padded three-digit numbers. Zero-padding ensures correct alphabetical/numerical ordering in all file explorers and operating systems — without padding, page-10 sorts before page-2 alphabetically.
- There is no hard limit, but large PDFs take significant time — processing is sequential and each page requires a full canvas render. A 200-page PDF typically takes 1–4 minutes depending on page complexity and device CPU. The progress indicator shows the current page. For very large PDFs (500+ pages), a server-side tool like Ghostscript, ImageMagick, or the poppler pdftoppm utility is faster.