10 min read
How to remove pages from a PDF without Acrobat (2026)
By ScoutMyTool Editorial Team · Last updated: 2026-05-20
Introduction
A vendor sent me a 47-page contract last week with five pages of internal review comments that should never have been included — clearly the author had merged a draft annotation file into the final and not noticed. My instinct was to open Adobe Acrobat Pro and delete the pages, but I had cancelled the subscription a year ago. The deletion ended up taking forty seconds in a browser tab. Most people assume "delete pages from a PDF" requires Acrobat; in 2026, six free tools handle the job just as well. This article is the practical comparison, with the page-range syntax, the bookmark caveats, and the workflow that protects you from accidentally deleting the only copy of a page.
Six free tools that delete PDF pages
| Tool | Cost | Where it runs | Best for |
|---|---|---|---|
| ScoutMyTool Remove Pages | Free, ad-supported | In any browser; runs entirely client-side | No-install deletion; multi-range selection; nothing leaves your machine |
| Apple Preview (macOS) | Free, ships with macOS | Desktop Mac app | Mac users; visual thumbnail-drag-to-delete workflow; sub-second startup |
| qpdf (CLI) | Free, open source | Linux / macOS / Windows command line | Batch scripts; precise page-range syntax; no GUI overhead |
| LibreOffice Draw | Free, open source | Cross-platform desktop | When you also need to edit page content while deleting; thumbnail-based UI |
| Google Drive PDF editor | Free with Google account | Web browser; uploads to Google Drive | Users already in Google Drive; least useful for confidential documents |
| Microsoft Edge (built-in PDF) | Free, ships with Windows 11 | Edge browser | Windows users for one-off deletions via the page-management sidebar |
Detailed walk-through of each tool
1. ScoutMyTool Remove Pages — browser, no install
Go to scoutmytool.com/pdf/remove-pages, drop in the PDF, click the thumbnails of the pages to delete (or type a range like "3, 7-9, 14" in the range field), click Delete, download the result. The tool runs entirely in your browser tab using pdf-lib — your PDF never leaves the machine. Bookmarks that pointed to remaining pages have their targets adjusted automatically; bookmarks that pointed to deleted pages are removed. Takes about thirty seconds end-to-end.
2. macOS Preview — built-in, instant
Open the PDF in Preview, View → Thumbnails (or Cmd+Option+2) to show the page thumbnails in the sidebar. Click a thumbnail to select it; Cmd-click for multiple non-contiguous selection. Press Delete (or Edit → Delete) to remove. File → Save (or Cmd+S) writes back to the original; File → Export As preserves the original and saves the deletion as a new file. Preview's deletion is the fastest path for Mac users with no install and no upload, but it does not respect bookmarks as cleanly as ScoutMyTool — verify the outline after deletion.
3. qpdf — the command-line scriptable option
qpdf is a free open-source command-line PDF tool that handles page deletion (and many other operations) via a precise range syntax. Available via apt, brew, or pacman:
# Delete pages 5-10 from input.pdf, write output.pdf
# The "1-4,11-z" range means "pages 1-4 and 11 to end"
qpdf input.pdf --pages . 1-4,11-z -- output.pdf
# Remove the first and last pages
qpdf input.pdf --pages . 2-z-1 -- output.pdf
# Batch: drop the first page of every PDF in a directory
for f in *.pdf; do
qpdf "$f" --pages . 2-z -- "trimmed_$f"
doneqpdf's --pages syntax is the most-precise of any tool in this list — "1-4,11-z" means "pages 1 through 4 and 11 through the last page" (the "z" suffix means "last page"). Bookmarks are preserved with adjusted targets where possible.
4. LibreOffice Draw — visual thumbnail editing
Open the PDF in LibreOffice Draw (it imports each page as a Draw page), select the pages in the Pages panel on the left, right-click → Delete Page. File → Export As → Export as PDF saves the modified file. Heavier than necessary for a pure deletion workflow but useful if you also want to edit page content (text, shapes, images) while deleting pages.
5. Google Drive — for users already in Drive
Upload the PDF to Google Drive, right-click → Open with → Google Docs (re-renders the PDF as a Google Doc with one section per page), delete the unwanted sections, File → Download → PDF. Workable but lossy — the round-trip through Google Docs may alter the formatting. Recommended only when you are already inside Drive and the document is not confidential.
6. Microsoft Edge — built-in on Windows 11
Open the PDF in Edge (the default reader on Windows 11), open the page-management sidebar (the "Pages" icon), right-click a page → Delete. Save the modified file via Save As. Convenient for one-off deletions on Windows without installing anything; the same caveats about bookmark integrity apply.
Page-range syntax — the conventions
Most range-based tools use the same conventions. Once you know them, you can specify any selection without clicking individual pages.
| Syntax | Meaning | Example |
|---|---|---|
| Single page | Delete one specific page | 5 |
| Range with hyphen | Delete contiguous pages from start to end | 10-15 |
| Multiple ranges | Combine ranges with commas | 3, 7-9, 14 |
| From-end (qpdf, some tools) | Counted from the last page | z-1 means "last page minus one" (qpdf-specific) |
| Every Nth page | Stepped selection (CLI tools mainly) | 1-50:2 (every other page from 1 to 50) |
| All pages except range | Inverted selection — keep these, delete the rest | Keep 3-7 → delete 1,2,8,9,10... (provided as "keep" rather than "remove") |
Four caveats to know before deleting
- Always work from a copy. Deletion in most tools writes a new PDF but some can overwrite the original (Preview's File → Save). If you delete the wrong pages from the only copy, recovery requires re-creating from source. As a habit, copy the original to a working file before deleting.
- Bookmarks may need cleanup. Naive deletion tools delete pages but leave the bookmark outline pointing at the original page numbers, producing broken outline entries. Smart tools (ScoutMyTool, qpdf) update bookmarks automatically. After deleting, open the modified PDF in a viewer and click each bookmark to verify it lands on the correct page.
- Page-numbered footers do not auto-update. If your PDF has "Page 5 of 47" stamped on each page, deletion does not change those stamps — the page footer remains "Page 5 of 47" even after the document is shorter. If the footer matters, re-apply page numbers using Add Page Numbers after deletion.
- Form fields and signatures may break. Forms whose JavaScript references "page 5" by index will misbehave if page 5 has been deleted. Certificate-based digital signatures are invalidated by any modification, including page deletion — re-sign after deleting if the document needs a valid signature.
A safe deletion workflow — five steps
- Copy the original. Make a working copy named explicitly (e.g., contract.working.pdf). Never delete from the only copy.
- Open the working copy in your tool. ScoutMyTool Remove Pages for the browser, Preview / Edge for desktop, qpdf for CLI.
- Identify the pages to delete. Visually via thumbnails, or by range syntax if you already know the page numbers. Double-check the selection before clicking Delete — a wrong selection here is the most common failure.
- Delete and save. Save as a new file (do not overwrite the original). Name the output clearly (contract.trimmed.pdf or contract.final.pdf).
- Verify. Open the trimmed file. Click every bookmark to confirm it lands on the right page. Spot-check the first and last few pages. Re-apply page numbers with Add Page Numbers if the original had numbered footers.
Related ScoutMyTool tools and articles
- Remove Pages — the primary tool referenced.
- Extract Pages — the inverse: pull specific pages out into a new PDF.
- Split PDF — split a long PDF into per-section files.
- Merge PDF — combine PDFs back together after deletion.
- Rearrange PDF pages — reorder rather than delete.
- Add Page Numbers — re-apply page numbers after deletion.
- Add page numbers, headers and footers — sister article on page-number conventions.
- Best PDF reader for Mac — sister piece including Preview-based deletion.
Frequently asked questions
- What is the difference between deleting pages and extracting pages?
- Deletion removes the specified pages from the source PDF and produces a smaller PDF without them. Extraction does the opposite — it pulls the specified pages out into a new PDF, leaving the original untouched. The two are inverses: extracting pages 5–10 gives you a 6-page PDF containing those pages; deleting pages 5–10 gives you the original PDF minus those 6 pages. Pick deletion when you want to keep the bulk of the document and lose a few pages; pick extraction when you want to send only a few pages from a longer document. ScoutMyTool has both as separate tools: Remove Pages and Extract Pages.
- How do I select which pages to delete?
- Two ways. Visual selection: open the tool, see a thumbnail grid of every page, click the ones you want to delete, click Delete. Best for ad-hoc selection where you have to visually identify pages (blank pages, duplicate scans, decorative dividers). Range selection: type a page-range string like "3, 7-9, 14" — single pages comma-separated, contiguous ranges with hyphens. Best for selections where you already know the page numbers (delete the cover page, the table of contents, and the back matter). Most tools support both; ScoutMyTool exposes both modes in the same UI.
- Will deleting pages break the bookmarks (outline) in my PDF?
- It depends on the tool. Smart deletion tools update the bookmark outline automatically — bookmarks that pointed to deleted pages are removed; bookmarks that pointed to later pages have their target adjusted to the new page numbers. Naive tools delete the pages but leave the bookmark outline pointing at the original page numbers, which produces broken bookmarks (clicking a bookmark jumps to the wrong page or to a no-longer-existing page). ScoutMyTool and qpdf handle bookmark adjustment correctly; verify the output after deletion in any reader by clicking each bookmark.
- Can I undo a deletion?
- Inside the deletion tool, usually yes — you can deselect a page before clicking Delete. Once the new PDF is downloaded and you have closed the tool tab, the deletion is final from the tool's perspective. The only way to "undo" at that point is to keep a copy of the original PDF and re-do the deletion if you change your mind. As a habit, never delete from the only copy of a PDF you have — always work from a copy.
- Are my PDFs uploaded when I use a free page-deletion tool?
- Depends on the tool. ScoutMyTool's Remove Pages tool runs entirely in your browser tab using pdf-lib — the PDF is parsed locally, the specified pages are removed from the document structure, and the modified PDF is downloaded back to your machine. Nothing transits a server. Server-based deletion services (Smallpdf, iLovePDF, Adobe online) upload the file, process it on their infrastructure, and stream the result back. For confidential documents (contracts, medical records, financial statements), the client-side path is the right default.
- How is page deletion different from redaction?
- Page deletion removes an entire page. Redaction removes specific content (text, images) within a page while keeping the page itself. Use deletion when the entire page is irrelevant or sensitive — a duplicate scan, a blank separator, a confidential cover sheet. Use redaction when the page contains a mix of redaction-needed and keep-needed content and you want to keep the surrounding context. The two are complementary: many production workflows do both — delete the pages that are entirely irrelevant, redact specific content on the pages that remain.
- Can I delete pages by content (e.g., all pages containing "Draft")?
- Yes, but only with a tool that supports content-based selection. ScoutMyTool's pattern-based selection tool can scan the OCR text layer of a PDF and identify pages that match a given regex or substring; pdftk and qpdf can be scripted to do the same via pdftotext for the per-page text and a shell loop for the deletion. For PDFs without a text layer (scanned documents), OCR first using ScoutMyTool's PDF OCR tool, then run the content-based selection. Useful for removing every "draft watermark" page from a release version, or every "for internal review" cover sheet from a customer-ready file.
Remove PDF pages in the browser, free
Browser-based; runs client-side with pdf-lib. Bookmarks adjusted automatically. Nothing is uploaded.