You open a PDF and one or more pages appear blank, empty white pages where content should be. The content is sometimes there but not displayed, sometimes missing entirely. The fix depends on the cause. This guide walks through diagnosing and resolving blank PDF pages.
Why pages appear blank
Several causes, ranging from trivial to catastrophic:
- Slow render. A complex page is still rendering. Wait a few seconds.
- Display issue. The reader has a glitch; close and reopen.
- Content beyond visible region. Content exists but at coordinates outside the page boundaries.
- Hidden by layers. Content is in an Optional Content Group (OCG) that is hidden.
- Transparency rendering failure. Complex transparency blends fail in some readers.
- Font rendering failure. Fonts missing or broken render as nothing rather than fallback.
- Corrupt content stream. Page object exists but content stream is damaged.
- Empty page. The page is genuinely empty in the source file.
- Encryption issue. Page content encrypted differently than the document.
- Reader bug. Specific to one reader; works in others.
Each has its own fix.
Diagnostic checklist
When you encounter a blank page:
- Try a different reader. Open in Adobe Acrobat, Preview, Chrome, Firefox. If one shows content, it's a rendering issue, not file damage.
- Try the same reader fresh. Close and reopen. Sometimes fixes display issues.
- Check the page is not actually empty. Some documents legitimately have blank pages (chapter dividers, two-sided printing fillers).
- Try zooming and panning. Content may exist outside default view.
- Check layers. View → Show/Hide → Navigation Panes → Layers (in Acrobat). Toggle layers on.
- Try
pdftotexton the page. If text extraction returns text, content is there but not visible, see poppler-utils introduction. - Inspect with mutool.
mutool draw page-7.png input.pdf 7, see if rendering produces content.
If different readers and pdftotext all show nothing, the page is genuinely empty.
Fix 1: Reader issues
If the page renders correctly in a different reader, your default reader has a problem.
Solutions:
- Update the reader to latest version
- Restart the reader
- Restart the computer if persistent
- Use a different reader for this file
For widespread reader issues, the file may push the reader to a corner case. The fix is to use a more capable reader (Acrobat usually wins) or simplify the file.
Fix 2: Hidden layers
If the file uses Optional Content Groups (OCGs / layers):
- In Acrobat: View → Show/Hide → Navigation Panes → Layers
- Toggle layers to see what is hidden vs shown
- In other readers: look for layer panels (varies)
Sometimes a document is authored with content hidden by default. Toggling layers reveals it.
Fix 3: Transparency rendering issues
Complex transparency can fail:
- Update the reader to current version
- Re-render the PDF: open in Acrobat, save as a new file (which re-renders)
- Flatten transparency: see how to flatten a PDF
- Convert to PDF/A: which removes transparency complications
Fix 4: Font issues
Missing fonts:
- Install the font on your system if you know what it is
- Re-render the PDF with embedded fonts: open in a tool that embeds, save
- Substitute in the reader's preferences
For programmatic font fixing:
gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite \
-dEmbedAllFonts=true \
-sOutputFile=fixed.pdf input.pdf
Fix 5: Corrupt content stream
If a specific page is corrupt:
- qpdf can sometimes rebuild
- Re-rendering with Ghostscript may produce a working version
- mutool clean may help
Try:
qpdf input.pdf output.pdf
mutool clean -ggg output.pdf cleaned.pdf
See qpdf introduction and MuPDF introduction.
If the corruption is severe, the page content may be unrecoverable. Workaround: extract the readable pages with qpdf --pages input.pdf 1-3,5-end -- partial.pdf and live without the broken page.
Fix 6: Content outside visible region
Content drawn beyond the MediaBox is invisible:
- Acrobat Pro: Tools → Print Production → Set Page Boxes. Expand the MediaBox.
- CLI: qpdf can adjust:
qpdf input.pdf --pages input.pdf 1-z -- --rotate=0 output.pdf
This is unusual, most PDFs do not have content outside their stated boundaries.
Fix 7: Encryption rendering failures
A page encrypted differently than the document may render blank:
- Re-save the encrypted document after decrypting
qpdf --decrypt input.pdf output.pdfto remove encryption- Then re-encrypt if needed
For encrypted PDF basics, see PDF encryption explained.
Fix 8: Re-render the entire PDF
For stubborn blank pages, re-rendering often helps:
gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite \
-sOutputFile=rerendered.pdf input.pdf
This produces a fresh PDF from Ghostscript's interpretation of the original. Many subtle issues resolve.
Fix 9: Extract working pages
If recovery fails, salvage what works:
qpdf input.pdf --pages input.pdf 1-3,5-end -- working.pdf
Skips page 4 if it's the broken one. The result is a smaller PDF with only working pages.
Fix 10: Reach out
For business-critical PDFs:
- Contact the document's creator and request a fresh export
- Check if the original source (Word, InDesign) is available, re-export
- For PDFs from a regulated source, the issuer may have a re-issue process
Specific scenarios
Scanned PDF with blank pages. Likely the scanner picked up blank backs in duplex mode. Delete the blank pages, see how to delete PDF pages.
Generated PDF with blank pages. The generator may have inserted blanks for double-sided print. Same fix.
Downloaded PDF with blank pages. Download was incomplete. Re-download.
PDF after editing. Your edit may have introduced an issue. Try a different editor or revert to the original.
Form PDF with blank. Form field rendering failed. Try a different reader; fillable PDFs are sensitive to reader differences.
Page with image only. A page may contain just an image with no text. pdftotext returns empty; the image is there. Open in any reader.
Common gotchas
Blank pages added intentionally. Print-friendly PDFs add blank pages for double-sided printing. Not a bug.
One reader works, others don't. Probably a reader bug. Standardize on a reliable reader.
Pages blank only when printed. Printer driver issue, not PDF issue. Try a different printer or print-to-PDF.
Blank only at certain zoom levels. Rendering bug; update the reader.
Blank in browser viewer. Browser PDF viewers are often the weakest. Try Acrobat or another dedicated reader.
Content visible in viewer but not printer. Print issue. See how to fix PDF printing blank.
Cannot select text on blank page. Confirms there is no text content. If you expect text, the content is missing.
Prevention
Reduce future blank-page incidents:
- Validate PDFs after generation
- Test in multiple readers for important files
- Use standard fonts that embed cleanly
- Avoid extreme transparency unless needed
- Keep readers updated
- Maintain source files for re-export if needed
Practical recipe
For a blank page in a PDF you received:
- Try another reader
- If still blank, run
pdftotextto confirm no text - Try
mutool drawto attempt rendering - If rendering produces nothing, the page is truly empty or corrupt
- Contact the sender or extract working pages
For a blank page in a PDF you generated:
- Check the source, was the page intended to be blank?
- Re-export with current source
- Test in multiple readers before sending
Takeaway
Blank PDF pages are usually fixable. The fix depends on the cause: reader bugs, hidden layers, transparency issues, font problems, content stream corruption. The diagnostic path is to try multiple readers, extract text, and use repair tools (qpdf, Ghostscript, mutool) to attempt recovery. For browser-based PDF operations and reader-agnostic checks, Docento.app handles common tasks. For related topics, see how to fix PDF text not selectable, how to recover a corrupted PDF, and why won't my PDF open.