How to Remove Blank Pages from a PDF
Why PDFs accumulate blank pages, what actually counts as "blank", and the fastest way to remove them.
Quick summary
Quick answer: Blank pages in PDFs usually come from duplex scanning, section breaks in the source document, or inserted separators. Acrobat has no one-click "remove blank pages" tool — you delete them manually from the Organize Pages view. For automated removal, online tools like Mapsoft's PDF Hub detect and delete blank pages in one pass, and command-line tools like Ghostscript can do the same at scale.
You can also remove blank pages from a PDF online for free using Mapsoft's PDF Hub — no installation required.
Where blank pages come from
Blank pages are one of the most common quality issues in PDF documents. They're rarely added deliberately, but they accumulate from a handful of predictable sources:
- Duplex scanning. When you scan a stack of single-sided originals using a double-sided scanner, the back of every sheet is captured as a blank page. A 50-page document becomes 100 pages, half of them empty.
- Section breaks in the source. Word documents with "odd page" section breaks force an extra blank page before each new chapter so sections always start on the right-hand page. That's fine for print but often unwanted in the digital PDF.
- Inserted separators. Scanners often insert a blank page at the start or between documents as a batch separator.
- Exported presentations. PowerPoint and Keynote slides that include invisible transitions or build steps sometimes export as blank PDF pages.
- Merged files. When you combine multiple PDFs, any blank pages in the originals carry through to the combined file.
What counts as "blank"?
This matters more than it sounds. A page can be visually empty to a human eye but still carry content that makes an automated "is this blank?" check return no.
- Truly empty pages have no text, no images, and no vector content. Any tool will detect these reliably.
- Near-empty pages might have a single page number in the footer, a colour bar from a pre-press workflow, or a watermark. Automated tools disagree on whether these count.
- White-on-white content (text or vectors matching the page background) is invisible but still present. Most tools don't remove these.
- Pages with off-page content have objects positioned outside the visible page box. They appear blank but the PDF still carries the data.
Good blank-page-removal tools expose a sensitivity threshold so you can tune how strict the detection is. For production workflows, test on a sample file before running on a batch.
Methods
Method 1 — Manual removal in Acrobat
Acrobat's Organize Pages tool (previously Page Thumbnails) shows all pages as thumbnails. Select blank pages individually or shift-click to select a range, then press Delete. Save As to produce a clean copy.
This works well for short documents where you know exactly which pages to remove. For a 500-page scan with 250 blank pages, you want automation.
Method 2 — Online removal, free
Mapsoft's Remove Blank Pages tool scans every page for content and deletes the empty ones automatically. Upload a PDF and download the trimmed copy in one pass — typical for a duplex scan it halves the file size. Works entirely in the browser.
Method 3 — Acrobat Action Wizard
For repeated blank-page removal inside Acrobat Pro, the Action Wizard can run a JavaScript that evaluates each page and deletes blanks. The Acrobat JavaScript API exposes doc.getPageNumWords() and doc.getPageNthWord() which let you check for text content; combined with a check for page images, you can flag truly blank pages.
For the full rundown on Action Wizard, see our batch processing guide.
Method 4 — Command line (Ghostscript, pdftk)
Ghostscript can render each page to a bitmap, measure the white-to-non-white pixel ratio, and skip pages above a threshold. A typical script pipeline: render to grayscale at low DPI, check pixel counts, build a list of non-blank pages, then run pdftk to extract only those pages.
gs -sDEVICE=pnggray -r72 -dFirstPage=N -dLastPage=N -o page.png input.pdfpdftk input.pdf cat 1 3 5 7 output clean.pdf(extract just the non-blank pages)
Frequently Asked Questions
Can Acrobat remove blank pages automatically?
Not with a single built-in command. Acrobat can delete pages you select manually, and its Action Wizard can run a JavaScript that detects blanks, but there's no one-click tool in the standard interface.
Will removing blank pages reduce the file size?
Modestly. Blank pages are usually very small objects, so removing 250 of them from a 100 MB scan might save a few megabytes. The visual benefit (halving the page count) is usually more valuable than the disk-size saving.
What counts as a blank page?
Tools vary. Strict tools only flag pages with zero content. Lenient tools flag pages that are nearly blank — only a page number, a watermark, or a colour bar. Good tools expose a threshold so you can tune detection.
Does blank-page removal affect bookmarks or links?
Yes. If a bookmark points to a page that gets deleted, it may become invalid. Run a bookmark validation pass afterwards, or use a tool that rewrites bookmarks automatically when pages are removed.
Related Articles
How to Split PDF Files in Acrobat
Splitting a PDF into sections is often the next step after removing blank separators between documents.
A Guide to Batch Processing in Adobe Acrobat
Action Wizard recipes for cleaning up scanned documents — blank removal, OCR, and more.
Scanning Documents to PDF with Adobe Acrobat
If your blank-page problem starts at the scanner, this post covers settings that prevent it.