You hit Print, the printer churns out paper, and every page comes out blank or only partially printed. The PDF looks fine on screen but prints empty. This is one of the most frustrating common PDF issues, and the cause is usually fixable. This guide walks through diagnosing and resolving PDFs that print blank.
Why a PDF prints blank
Several common causes:
- Printer driver issue. Outdated or buggy driver mishandles the PDF.
- PDF complexity. The PDF has elements (transparency, layers) the printer cannot process.
- PostScript translation problem. PDF→PostScript conversion fails or omits content.
- Memory limits. Printer runs out of memory mid-page.
- Wrong color mode. Print mode incompatible with the PDF's color space.
- Print spool corruption. Operating system print queue has a problem.
- Print as image setting needed. The PDF is too complex to send as drawing commands.
- Background images set to not print. Browser-style print settings exclude backgrounds.
The fix depends on which.
Fix 1: Try "Print as Image"
The most common solution. PDF readers offer an option to rasterize the PDF before printing, convert each page to a bitmap, then send the bitmap to the printer. This bypasses complex page processing.
Adobe Acrobat Reader:
- File → Print
- Click "Advanced..."
- Check "Print As Image"
Other readers: look for an "advanced" or "settings" option in the print dialog.
This usually solves the blank-page problem because the printer just prints a bitmap rather than interpreting complex page commands.
Fix 2: Save as new PDF first
Open the PDF and re-save:
- In Acrobat: File → Save As (not Save), re-renders the file
- CLI:
gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -o rerendered.pdf input.pdf, see Ghostscript introduction - CLI:
qpdf input.pdf rerendered.pdf, see qpdf introduction
Then print the re-rendered version. Often a fresh PDF prints when the original would not.
Fix 3: Update the printer driver
An outdated printer driver may mishandle modern PDFs:
- Check the manufacturer's website for current driver
- Install the latest driver
- Try the print again
For corporate networks, IT may manage drivers, ask if updates are available.
Fix 4: Try a different reader
PDF readers handle printing differently:
- If Acrobat prints blank, try Foxit
- If Foxit prints blank, try Chrome
- If a browser prints blank, try a dedicated reader
This often identifies whether the issue is reader-side or printer-side.
Fix 5: Print to PDF, then print the new PDF
A roundabout but effective trick:
- Open the PDF
- Print → choose "Save as PDF" (Mac) or "Microsoft Print to PDF" (Windows)
- Open the resulting PDF
- Print to the physical printer
This re-renders through the OS print system, often cleaning up issues.
Fix 6: Reduce PDF complexity
For complex PDFs:
- Flatten transparency, see how to flatten a PDF
- Compress images, see reduce PDF file size
- Convert to PDF/A, simpler structure
Try:
gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite \
-dPDFSETTINGS=/printer \
-sOutputFile=simplified.pdf input.pdf
The result is a cleaner PDF that prints more reliably.
Fix 7: Color space mismatch
For color printing:
- PDF in CMYK on an RGB printer or vice versa can cause issues
- Convert color space to match the printer
gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite \
-sColorConversionStrategy=RGB \
-sOutputFile=rgb.pdf input.pdf
For more on color spaces, see CMYK vs RGB in PDF.
Fix 8: Clear the print spool
Print spool corruption:
- Windows: Services → Print Spooler → Stop. Delete files in
C:\Windows\System32\spool\PRINTERS\. Start the spooler. Try again. - macOS: System Settings → Printers & Scanners → right-click printer → Reset Printing System.
- Linux:
sudo systemctl restart cups
After clearing, retry the print.
Fix 9: Increase printer memory
For low-memory printers struggling with complex PDFs:
- Print fewer pages at a time, print pages 1-10, then 11-20
- Reduce resolution in print settings (300 → 150 DPI)
- Add memory to the printer if it supports modular memory
Modern printers usually handle complex PDFs fine; this is mostly a concern with older or simpler office printers.
Fix 10: Check "Print Background"
For PDFs with background colors or images:
- In most readers there is a "Background" setting under print options
- Enable if the background is missing
- Note some readers strip backgrounds by default to save ink
Fix 11: Try a different printer
If nothing else works:
- Print to a different printer, if it works, the original printer is the issue
- Print to PDF first, then print the PDF on the problem printer, sometimes works
- Email the PDF to someone with a different printer, confirms whether the PDF is the issue
Specific scenarios
Forms print blank. Form field values may not print without proper settings:
- Adobe Reader: Print dialog → "Document and markups" or "Form fields only"
- See how to fill out a PDF form
Annotations don't print.
- Some readers print annotations separately
- Check "Document and Markups" in print dialog
- Or flatten the PDF so annotations become content
Watermark doesn't print. A watermark added as annotation may not print:
- Re-add as content
- See how to add a watermark to PDF
Specific pages blank, others fine. Those pages may have corrupted content. See how to fix blank PDF pages.
Custom paper sizes. A PDF designed for an unusual paper size may misprint:
- Set printer to "Fit to page" in print dialog
- Or change PDF page size, see how to change PDF page size
Large pages. PDF pages bigger than the printer paper:
- "Fit to page" usually handles
- Or split a poster across multiple pages
Common gotchas
Print to file (PDF) works; physical print does not. Driver or hardware issue, not PDF issue.
Some pages print, others blank. Likely a specific page has issues. Print the working pages; address the problem pages separately.
Color prints but black pages blank. Color ink is fine; black cartridge is empty. Check ink levels.
Prints fine on first try; fails on second. Spool or memory issue. Clear spool and retry.
Network printer issues. Network connectivity problems. Print to USB-connected or different printer to isolate.
Cloud-printed PDFs blank. Cloud print services (Google Cloud Print discontinued) had specific limitations. Use local print or specific manufacturer apps.
OS update broke printing. Recent OS update may have introduced incompatibility. Check for printer driver updates or report to manufacturer.
Prevention
To reduce future blank-print incidents:
- Test prints of important documents before relying
- Keep printers and drivers updated
- Standardize on a reader that prints reliably for your printers
- Use simpler PDFs when possible (PDF/A, less complex layouts)
Practical recipe
For a PDF printing blank:
- Try "Print As Image" first, solves most cases
- If that fails, re-save the PDF as a new file and try again
- Try a different reader
- Update printer driver
- Reduce complexity (flatten, compress)
- Try a different printer
- As last resort, take to a print shop
For batch printing tasks, do one test print first before sending many pages.
Takeaway
A PDF printing blank is almost always fixable. The fix usually starts with "Print As Image" in your reader's print dialog. If that fails, re-saving the PDF, updating drivers, simplifying the document, and trying different readers each address different causes. For complex print workflows, see how to print PDF correctly. For browser-based PDF operations during print prep, Docento.app handles common tasks. For related troubleshooting, see how to fix blank PDF pages, why won't my PDF open, and troubleshooting PDF fonts not displaying.