Home/Blog/PDF Tools
PDF Tools8 min readMarch 1, 2026

How to Split and Reorder PDF Pages Online

Split a PDF into individual pages or reorder sections without software. Browser-based, uses pdf-lib locally — your documents never leave your device.

👨‍💻
Jeeva
Founder & Developer, PDFBucket

!web performance

Why PDF Page Manipulation Is Technically Interesting

PDFs store pages as individual objects in a tree structure. Each page object contains references to its content streams (the drawing instructions), its resource dictionary (fonts and images used on that page), and its bounding box (the page dimensions).

When you reorder or extract pages, you are rearranging these object references in the page tree — not copying the actual content. pdf-lib implements this correctly: it copies page objects and their transitive dependencies (the fonts and images they reference) into the new document, avoiding broken references in the output.

Removing Pages Using the Browser Print Method

The most practical approach for page removal:
  1. Open the PDF in Chrome or Edge browser
  2. Use Ctrl+P (Print) and select Save as PDF
  3. In the print dialog, enter the specific page range you want to keep
  4. The resulting PDF contains only those pages

Reordering a Document

For reordering entire files (for merging multiple PDFs in a specific order), the merger's arrow controls handle this. For reordering individual pages within a single PDF:
  1. Open the PDF in a viewer with page count visibility and note which pages you need
  2. Print specific page ranges to separate files using Ctrl+P
  3. Use the Merge PDF tool to combine the sections in your desired order

File Size After Page Operations

One counterintuitive aspect of pdf-lib page manipulation: extracting 2 pages from a 50-page PDF does not necessarily reduce the file size by 96%. If those 2 pages reference fonts and images also used on other pages, the shared resources are still included in the output. For files where size reduction is the goal after extraction, running the browser print-to-PDF method on the output removes orphaned embedded resources.

Try it for free — right now

No signup. No limits. All tools run in your browser.

Use Free Tools ↗

FAQs about PDF Tools

Everything you might be wondering — answered.

Can I extract specific pages from a PDF?+
Yes. The PDF Merger tool lets you reorder pages before merging. To extract specific pages, control which PDFs and pages you include in the merge output.
Does reordering affect the PDF's text searchability?+
No. pdf-lib moves page objects without touching the text content streams. Text remains searchable in the output PDF.
Is there a page count limit?+
No enforced limit. Practical limits depend on your device RAM — hundreds of pages typically work fine on modern desktops.

More Guides

OCR

OCR for Receipts and Invoices — How to Extract Data Accurately

Read →

Social Media

Complete Guide to Social Media Image Sizes (2026 Edition)

Read →

Guides

WebP vs JPEG vs PNG vs AVIF — Which Format Should You Use?

Read →