Skip to main content
L
Loopaloo
Buy Us a Coffee
All ToolsImage ProcessingAudio ProcessingVideo ProcessingDocument & TextPDF ToolsCSV & Data AnalysisConverters & EncodersWeb ToolsMath & ScienceGames
Guides & BlogAboutContact
Buy Us a Coffee
L
Loopaloo

Free online tools for developers, designers, and content creators. All processing happens entirely in your browser - your files never leave your device. No uploads, no accounts, complete privacy.

support@loopaloo.com

Tool Categories

  • Image Tools
  • Audio Tools
  • Video Tools
  • Document & Text
  • PDF Tools
  • CSV & Data
  • Converters
  • Web Tools
  • Math & Science
  • Games

Company

  • About Us
  • Contact
  • Blog
  • FAQ

Legal

  • Privacy Policy
  • Terms of Service
  • Disclaimer

Support

Buy Us a Coffee

© 2026 Loopaloo. All rights reserved. Built with privacy in mind.

Privacy|Terms|Disclaimer
  1. Home
  2. PDF Tools
  3. PDF Page Remover
Add to favorites

PDF Page Remover

Remove specific pages from a PDF document

Quickly delete unwanted pages from a PDF. Upload your file, select the pages to remove, and download a cleaned-up version.

PDFs never leave your deviceMore pdf toolsJump to full guide

Related reading

  • The Complete Guide to Working with PDFs: Edit, Optimize, and Organize18 min read

Initializing in your browser…

You might also like

PDF Page Reorder

Reorder pages in a PDF by dragging and dropping

PDF to Images

Render each PDF page as a PNG or JPG image

PDF Header/Footer Adder

Add custom headers and footers with page numbers

PDF Page Remover: a worked example

A scanned PDF has blank separator pages between every chapter that should be deleted.

Input

scan.pdf · remove pages 4, 9, 14, 19
PDF Page Remover produces

Output

scan.pdf with those 4 pages gone, the rest untouched

Only the listed pages are dropped and the remaining pages are re-stitched in order, with no quality loss because nothing else is re-encoded. A thumbnail view makes it easy to confirm you are deleting the right pages.

About the PDF Page Remover

Quickly delete unwanted pages from a PDF. Upload your file, select the pages to remove, and download a cleaned-up version.

Working with your PDF

  1. 1Upload your PDF file.
  2. 2Select the pages you want to remove using the visual preview or by entering page numbers.
  3. 3Click "Remove Pages" and download the result.

Key features

  • Visual page thumbnails for easy selection
  • Remove multiple pages at once
  • Preserves remaining page formatting

Common scenarios

  • Removing blank pages

    Strip out blank or unnecessary pages that scanners sometimes add.

  • Redacting sections

    Delete entire pages that contain information you do not want to distribute.

Tips & best practices

  • Use the Invert button to keep only a handful of pages: select the few you want to keep, then click Invert so everything else is marked for removal.
  • On documents over 30 pages, later pages render as numbered placeholders rather than image previews - type their numbers into the Page Range box (e.g. '45-60') to select them reliably.
  • Odd/Even presets are handy for dropping blank reverse sides from a duplex scan in one click.

Examples

  • Drop scattered pages by range

    Type '1,3,5-7' into the Page Range box to mark pages 1, 3, and 5 through 7 for removal; the Remaining counter updates and the download is saved as yourfile_removed_pages.pdf with those pages gone and the rest re-sequenced.

  • Keep only a few pages via Invert

    Click the tiles for the 3 pages you want to keep, press Invert so all other pages become selected, then Remove - leaving a new PDF of just those 3 pages.

How it works

PDF Page Remover does not hide or flag pages - it rebuilds the document from scratch with pdf-lib. The removePages() routine loads your file, computes the complement of your selection (every page index that is NOT marked for removal), then creates a brand-new PDFDocument and copyPages() each surviving page into it in order before calling save(). The result you download (named {original}_removed_pages.pdf) is a standalone, valid PDF containing only the kept pages, not the original with content suppressed. Because the page tree is reassembled, the structural page index shifts: a page that was #8 may become #6. This has real consequences - pdf-lib's copyPages does not carry over the document outline, so internal bookmarks or hyperlinks that targeted a removed page become dead, and any page numbers printed INTO the content itself (a footer reading 'Page 7') are baked pixels/text and are NOT renumbered.

Selection is flexible and happens entirely client-side. You can click individual page tiles to toggle them, or type a range string like '1,3,5-7' into the Page Range box - the parser splits on commas, expands hyphenated ranges, and silently clamps anything above the document's page count or at/below zero (the loop guards with i <= pageCount and i > 0). Quick-select buttons cover the common cases: All, None, Invert (flip the current selection), Odd, and Even, which makes dropping every blank back-of-sheet scan a single click. A live counter shows Total Pages, To Remove (red), and Remaining (green), so you always see the resulting page count before committing. Two guards run when you press Remove: you must select at least one page (the button is disabled at zero selection), and you cannot remove all of them - if your selection equals or exceeds the page count, removePages aborts with a 'Cannot remove all pages' toast and a yellow 'At least one page must remain' notice is shown inline.

Page previews are rasterized in the browser with pdfjs-dist (the worker at /workers/pdf.worker.min.mjs), rendered at scale 0.25 and encoded as JPEG at quality 0.5 to keep the grid lightweight. Crucially, thumbnail generation is capped at the first 30 pages via Math.min(count, 30); pages beyond that still appear as selectable tiles but show a numbered placeholder instead of an image, so on a very large document you select the later pages by number rather than by sight. You can switch between a grid view (a dense thumbnail mosaic, 5 to 8 columns) and a list view (one row per page with a small preview and a 'Will be removed' label). As a decision rule: reach for Page Remover when you want to drop a few scattered pages from a document you otherwise keep; reach for the extraction tool when you instead want to pull pages OUT into a new file.

Frequently asked questions

Can I undo page removal?

The original file is never modified. If you need to start over, simply re-upload the original PDF.

What happens to the page numbering?

Pages are renumbered sequentially after removal. If page 3 is deleted, the old page 4 becomes the new page 3.

Related tools and how they differ

  • PDF Splitter: Extracts chosen pages into separate new PDFs (one per page, or a ZIP) via all, range, or select modes; use it to export pages out, not delete them in place.
  • PDF Page Reorder: Keeps all pages and only changes their order; use it when pages belong but are in the wrong sequence, not when you want some pages gone.

Further reading

  • The Complete Guide to Working with PDFs: Edit, Optimize, and Organize18 min read

Private by design

PDF parsing and editing happen in your browser. Documents, and everything inside them, are never uploaded or stored remotely.