How to remove blank pages from a PDF

A blank page remover finds the pages in a PDF that put nothing on the paper and deletes them. Blank pages arrive from everywhere: a duplex scanner captures the empty back of every sheet, a Word export adds a trailing page for a stray paragraph mark, merging two documents leaves the separator pages in place, and a report generator pads to an even page count. None of them carry information, all of them cost you paper when the file is printed, and each one interrupts a reader scrolling through the document.
This tool decides by reading each page's content stream. A PDF page is a sequence of drawing operators, and only a handful of them mark the paper: the text-showing operators, the path-painting operators, an image or form drawn with Do, and a shading. A page whose stream contains none of them draws nothing, whatever else it holds. That is a definite answer rather than a guess, which is why the pages it reports as blank are pre-selected for you.
It also catches the commonest real case, which a simple check misses. An exported document whose last page carries a single space has a content stream, has a text operator, and by any naive count is drawing something. The tool inspects what those text operators are being asked to show, and when every string is whitespace it reports the page as blank. That one pattern accounts for a large share of the blank pages people are trying to delete.
There is one thing it deliberately will not decide for you. A scanned blank sheet is a photograph of white paper, drawn as an image, and at the operator level it marks the page like any other picture. Telling it apart from a scan that matters requires measuring the actual pixels, which needs a rendering engine this tool does not carry. Rather than guess, pages that draw only an image are left unselected and shown like any other page, so you decide whether to click them. Deleting a page is not reversible, so a tool that guesses on your behalf is worse than one that asks.
Here is how that plays out when you remove blank pages in PDF files. Take a five-page report.pdf: page 1 is text, page 2 was added and never drawn on, page 3 carries a single space, page 4 is a scanned image and page 5 is text. The PDF remove blank pages check reports "2 blank pages detected" and pre-selects pages 2 and 3. Page 4 stays unselected. The button reads "Download (2 pages removed)" and saves report_cleaned_2_removed.pdf with three pages. To remove PDF blank pages that came from a scanner, click those pages yourself first.
Everything happens client-side. The file is read, analysed in JavaScript and rewritten on your device. It is never uploaded, logged or stored. That matters for the documents this tool is usually pointed at: contracts, scanned correspondence, medical records and financial statements, exactly the files that should not be handed to a stranger's server to save a few kilobytes.
How to delete blank pages from a PDF
Open your PDF
Drag the file in or click to select it. It is read in your browser and never uploaded.
Read the analysis
Every page is checked against what it draws. Pages that mark nothing are counted as blank, pre-selected and shown in red. Pages that draw only an image are not selected, so check the original for scanned blank sheets.
Confirm the selection
Add or remove pages by clicking them. Nothing is deleted until you say so, and at least one page must remain.
Download the cleaned PDF
The remaining pages are copied into a new document. Their content and quality are unchanged.
What it detects
Pages with no content stream
A page added but never drawn on. The clearest case, and the only one the previous check could find.
Streams that draw nothing
A page whose content stream sets colours, fonts and coordinates but never issues an operator that marks the paper.
Whitespace-only pages
The trailing page of a Word export carrying one space or an empty paragraph. The text operators are present, but every string they show is whitespace.
Image-only pages never pre-selected
A scanned blank sheet draws an image like any other page. Those pages are left unselected rather than removed on a guess, and you click any you want gone.
Frequently Asked Questions
Related Tools
Compress PDF
Reduce PDF file size by repacking the document structure, without re-encoding text or images
Delete PDF Pages
Remove specific pages from your PDF document
Organize PDF
Rearrange, rotate, duplicate, and delete pages in your PDF document
Split PDF
Split a PDF file into multiple documents by page ranges
Comments
0 comments
No comments yet. Be the first to share your thoughts!