How to Delete Pages from a PDF Free — No Upload, No Software
Whether you need to strip a confidential appendix before sharing, remove blank pages from a scanned document, or trim a 40-page report down to what actually matters, deleting PDF pages should take under a minute. This guide shows you how to do it entirely in your browser, with no file ever leaving your device. No account, no software, no waiting for uploads to finish.
- PDF is the primary document format for 82% of businesses, meaning page management is a near-daily task (Adobe PDF Survey 2023).
- Deleting pages in the browser with pdf-lib is lossless: the remaining pages are copied as-is, with no re-encoding or quality loss.
- Deleting differs from extracting: delete removes pages from the original; extract saves selected pages as a new file.
- For confidential documents, browser-based deletion means sensitive pages never pass through a third-party server.
Why Would You Need to Delete PDF Pages?
PDF is the primary document format for 82% of businesses, according to the Adobe PDF Survey 2023. That volume means page management is a routine task in almost every professional workflow. The most common reasons people delete pages fall into three categories: removing sensitive information before sharing, reducing file size, and cleaning up poorly scanned documents.
Removing sensitive content is arguably the most critical use case. Contracts often include appendices with payment terms, personnel data, or legal clauses that shouldn't travel with the main document when you share it with a counterparty. Deleting those pages before sending is faster than re-exporting from the source and doesn't require access to the original Word or InDesign file.
Reducing file size matters when you're attaching a PDF to an email with a 10 MB or 25 MB limit. A 60-page annual report with high-resolution images is often too large to send. Removing the appendix, photo gallery, or reference sections brings it under the limit without running a lossy compression pass that might degrade the remaining pages.
Cleaning up scanned documents
Scanners frequently produce blank pages, duplicate pages, or pages scanned in the wrong order. Office flatbed scanners that scan both sides of a sheet will insert a blank reverse page for every single-sided page in the stack. A 30-page document becomes a 60-page PDF, with every other page blank. Deleting all even-numbered pages (or all odd-numbered pages, depending on the scanner) is a one-step fix.
Quick scan cleanup: If your scanner produced blank pages for every single-sided sheet, use the range input to select all even or all odd pages in a single step, rather than clicking each thumbnail individually. Entering 2,4,6,8,10 or using a step pattern saves time on longer documents.
How to Delete Pages from a PDF - Step by Step
The process runs entirely in your browser using pdf-lib. No file is sent to any server at any point. For a 30-page document, the operation completes in under 5 seconds on most devices. There are no file size limits imposed by a server, since everything runs locally.
Go to fusionpdf.pro/delete-pages. No account or sign-up required. The tool loads directly in your browser.
Drag your PDF onto the drop zone or click to select it from your device. The file loads into browser memory only. No upload request is made - you can confirm this by watching your browser's network tab.
Three selection methods are available. Click individual thumbnails to toggle pages on and off. Type page numbers directly (e.g. 3, 7, 12). Enter a range (e.g. 4-9) to select a consecutive block. You can combine methods: 1, 4-6, 11 selects pages 1, 4, 5, 6, and 11 simultaneously. Selected pages are highlighted in red before you confirm.
A summary shows how many pages will be deleted and how many will remain. Review the list before proceeding - there's no undo after download.
Click Delete Pages. pdf-lib builds a new document containing only the kept pages and triggers an instant download. The original file on your device is unchanged.
There is no undo after you close the browser tab. If you might need to recover a deleted page, keep the original file in a separate location before processing. The tool only modifies the downloaded copy - your source file is never touched.
Delete vs. Extract vs. Split: Which Operation Do You Need?
These three terms describe different outcomes. Knowing which one matches your goal saves you from needing to run multiple passes. Delete removes selected pages and gives you back the rest. Extract saves selected pages as a new file, leaving the original untouched. Split divides a PDF into multiple separate files, either by page count, file size, or custom ranges.
A practical example: you have a 20-page contract with a confidential pricing appendix on pages 17-20. You want to send pages 1-16 to a client and keep pages 17-20 as a separate internal record. The right sequence is: first extract pages 17-20 (saves them as a separate file), then delete pages 17-20 from the original (produces the version to share). Two operations, each taking about 10 seconds.
Privacy: Why Local Processing Matters for Sensitive Documents
Most online PDF tools upload your file to a remote server, process it there, and return a download link. That means your document crosses at least one external server, where it may be stored temporarily, logged, or accessible to the service's staff. For contracts, medical records, HR files, or financial documents, that's a meaningful privacy risk. Browser-based processing eliminates that step entirely.
When deletion runs in the browser with pdf-lib, the file never leaves your device. The JavaScript library reads the binary PDF structure in memory, builds a new PDF object without the deleted pages, and writes the result to a Blob that your browser downloads directly. No network request carries your document content.
This matters most for a specific set of use cases. Legal professionals removing attorney-client privileged content before sharing with opposing counsel. HR staff stripping salary information from a job description before posting it. Healthcare workers removing patient identifiers from scanned records before emailing to a referral partner. In each case, the alternative - uploading to a third-party service - introduces unnecessary risk that local processing avoids entirely.
How to verify no upload happens: Open your browser's developer tools (F12), go to the Network tab, then load and process your file. You'll see no outbound POST request carrying your PDF. The only network activity is loading the page's static assets (CSS, JavaScript) before you even open a file.
What Happens to the PDF Structure When You Delete Pages?
When pdf-lib removes pages from a PDF, it copies the remaining page objects into a new document. The content streams (the actual text, images, and graphics on each page) are transferred without re-encoding. This means the operation is lossless for the surviving pages: no image compression occurs, no text is re-rendered, and no fonts are re-embedded.
A PDF document is structured as a cross-reference table pointing to a tree of page objects, each containing references to content streams and resource dictionaries. Deleting pages removes those page objects from the tree and rebuilds the cross-reference table. The content of retained pages - their text, images, fonts, and annotations - is preserved byte-for-byte from the original content streams.
Does deleting pages reduce file size?
Yes, but the reduction is proportional to the content of the deleted pages. A 10-page PDF where each page contains a high-resolution scanned image might be 5 MB. Deleting 5 of those pages removes 5 images' worth of binary data, reducing the file to roughly 2.5 MB. A 10-page text-only PDF might be 200 KB. Deleting 5 pages saves maybe 80-100 KB.
Shared resources complicate the math. If a font is used on both page 3 (which you're keeping) and page 7 (which you're deleting), that font's binary data stays in the file because page 3 still needs it. Embedded fonts can be 50-200 KB each. If the deleted pages were the only ones using a particular embedded font, that font data disappears too, producing a slightly larger size reduction than a simple page count calculation would suggest.
Bookmarks and internal links after deletion
If your PDF contains a bookmark pointing to a page you've deleted, that bookmark becomes a broken reference in the output. Similarly, any internal link (a clickable cross-reference in the document text pointing to the deleted page) will fail to navigate when clicked. This is expected behavior. If your document has an extensive table of contents with links, review which pages the links point to before deleting.
After deleting pages from a document with bookmarks: Open the result in your PDF reader and check the bookmarks panel. Any bookmark pointing to a deleted page will either show an error or jump to an unexpected location. You may need to delete those orphaned bookmarks manually in a full PDF editor.
Common Use Cases: Blank Pages, Scans, and Trial Watermarks
Three use cases account for the majority of page deletion requests. Removing blank pages from scanned documents is the most common. Removing confidential appendices before sharing is the most privacy-sensitive. Removing watermarked trial pages from documents produced by trial software is a third scenario worth discussing honestly.
Removing blank pages from scanned documents
Duplex scanners produce one blank page for every single-sided original in the stack. A 15-page document scanned in duplex mode produces a 30-page PDF with 15 blank pages. The fastest fix is to open the thumbnail view, sort visually, and click all blank pages before deleting. Alternatively, if the blanks follow a predictable pattern (all even-numbered pages, for example), use the range input: 2,4,6,8,10,12,14,16,18,20,22,24,26,28,30.
Removing confidential pages before sharing
Contracts, board packets, and legal filings frequently bundle confidential attachments into a single PDF for internal use. Before sharing a subset externally, the standard workflow is: identify the page numbers of the confidential section, delete those pages using the browser tool, and share the resulting file. This is faster than re-exporting from the source document and works even when you don't have access to the original Word, InDesign, or LaTeX file.
Removing watermarked pages from trial software output
Some trial-tier PDF tools and document editors produce output where every page or every other page carries a watermark. If you've converted or exported a document using trial software and only a subset of pages contain the watermark, you can delete those pages. However, if every page carries the watermark, deletion won't help - you'd need to either purchase the software or use a tool that processes the watermark directly. Be clear on which situation you're in before starting.
Frequently Asked Questions
Can I undo a deletion after I've downloaded the file?
No. Once you've downloaded the modified PDF, the deleted pages are gone from that file. The tool operates on a copy in browser memory - your original file on disk is never modified. To recover deleted pages, re-open your original source file. This is why we recommend keeping a backup of the original before processing. The tool shows a confirmation summary listing exactly which pages will be removed before you click delete.
What if I delete too many pages by accident?
If you haven't closed the browser tab yet, you can reload the page and start over with your original file. If you've already closed the tab, open your original file (the one you loaded before processing) - it's unchanged on your device. The browser tool only writes a new downloaded copy; it never overwrites the source. If you don't have the original, you'll need to recover from a backup.
Does deleting pages reduce the PDF file size?
Yes, proportionally to the content weight of the deleted pages. Image-heavy pages (scanned documents, photo layouts) produce the largest size reduction per page. Text-only pages contribute less. Shared resources like embedded fonts are only removed if no remaining page references them. For maximum compression beyond page deletion, run the result through the FusionPDF Compress tool afterward.
Can I delete non-consecutive pages - for example, pages 2, 5, and 11?
Yes. Type the page numbers separated by commas in the input field: 2, 5, 11. You can also click the individual thumbnails for those pages. The two methods can be combined - type a range for consecutive pages and click thumbnails for isolated ones. The selection panel shows a running preview of which pages will remain after deletion.
Is there a limit on how many pages I can delete, or on file size?
There's no server-side limit because no server is involved. The practical limit is your device's available memory. A typical laptop handles PDFs up to several hundred pages and 100+ MB without issue. Very large files (500+ pages, 200+ MB) may be slower to render thumbnails in the browser, but the deletion operation itself remains fast. If you hit memory limits, splitting the file first with the Split PDF tool then deleting from each part is a workable approach.
Ready to Delete Pages from Your PDF?
Free, instant, private. Select by page number, range, or thumbnail. No upload, no account required.
Open Delete Pages Tool →