PDF Merge & Split PDF Merge & Split
Add to Chrome — Free

PDF Merge & Split Blog

How to Split a PDF by Page Numbers (Free, No Upload)

Updated March 2026 · 7 min read

Quick Answer To split a PDF by page numbers for free, use the PDF Merge & Split Chrome extension. Open the Split tab, enter your page range (e.g., "1-5, 8, 12-20"), and download the extracted pages as a new PDF — all processing happens in your browser with no upload.
📋 Table of Contents
📋 Table of Contents

You have a 200-page PDF report, and you only need pages 15 through 42 for a presentation. Or you want to send just the appendix — pages 180 to 200 — to a colleague. Or you need to cut a massive scanned document into chapter-sized chunks for easier handling.

Splitting a PDF by page number is a fundamental document task, yet most tools either require an upload (privacy risk), charge a subscription (unnecessary), or bury the feature behind a confusing interface. This guide covers every reliable free method.

Split Any PDF by Page Range — Free

No upload. No account. Works entirely inside your browser.

Add to Chrome — Free


Understanding PDF Split Modes

Before choosing a tool, know what type of split you need:

Split Mode What it does Best for
Extract page range Pages 5–20 → one new PDF Pulling out a chapter or section
Split into individual pages 100-page PDF → 100 separate PDFs Processing pages separately
Split every N pages 100 pages, N=10 → 10 PDFs of 10 pages Dividing into equal chunks
Split at specific page Split at page 50 → two PDFs Dividing at a chapter break
Extract non-consecutive pages Pages 1, 5, 12, 20 → one new PDF Assembling selected pages


Method 1: PDF Merge & Split Chrome Extension (Recommended)

The PDF Merge & Split extension supports all the split modes listed above. It runs entirely inside Chrome — your files never leave your computer — and it handles everything from simple range extractions to splitting a PDF into individual pages.

How to split a PDF by page range

  1. Install PDF Merge & Split from the Chrome Web Store.
  2. Click the extension icon and select the Split tab.
  3. Click Add File and choose your PDF, or drag it into the extension window.
  4. Choose your split mode:
    • Enter a page range like 1-5 or 3, 7, 12-20
    • Or choose "Split into individual pages"
    • Or choose "Split every N pages" and enter the interval
  5. Click Split. The result downloads automatically.
Tip: If you need multiple non-consecutive pages in one file (e.g., pages 3, 7, and 15–20), use a comma-separated list: 3, 7, 15-20. The extension extracts all specified pages into a single output PDF in the order you specify.

Split Your PDF in Seconds

Specify any page range. Download instantly. Files stay on your computer.

Install PDF Merge & Split


Method 2: macOS Preview (Built-in, No Install)

Preview on macOS can split PDFs by deleting pages you do not want, which is a somewhat indirect but effective approach.

How to extract pages using macOS Preview

  1. Open your PDF in Preview.
  2. Go to View → Thumbnails to show the page sidebar.
  3. Select the pages you want to keep (hold Cmd to select multiple).
  4. Right-click and choose Export as PDF — this saves only the selected pages.

Alternatively: Select the pages you want to remove, press Delete, then save with File → Export as PDF.



Method 3: Ghostscript (Command Line)

For batch splitting or automation, Ghostscript is the gold standard. It processes files locally and supports precise page range control.

Extract pages 5 through 20

gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite \
 -dFirstPage=5 -dLastPage=20 \
 -sOutputFile=pages-5-20.pdf input.pdf

Split into individual pages (loop)

# Bash script to split every page into its own file
for i in $(seq 1 $(pdfinfo input.pdf | grep Pages | awk '{print $2}')); do
 gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite \
 -dFirstPage=$i -dLastPage=$i \
 -sOutputFile="page-$i.pdf" input.pdf
done

Using pdftk (alternative command-line tool)

# Extract pages 5-20
pdftk input.pdf cat 5-20 output pages-5-20.pdf

# Split every page
pdftk input.pdf burst output page_%04d.pdf
Install pdftk on Windows: Download from pdflabs.com. On macOS with Homebrew: brew install pdftk-java. On Ubuntu: sudo apt install pdftk.


Method 4: Adobe Acrobat (Paid, Feature-Rich)

If your organization uses Adobe Acrobat Pro, it has the most polished split interface — drag-and-drop page thumbnails, split by bookmarks, split by file size. But it costs $14.99/month or more. For the same functionality without the subscription, the PDF Merge & Split extension and Ghostscript cover all practical use cases for free.



Common PDF Splitting Use Cases

Extracting a chapter from a textbook

Large academic PDFs often contain hundreds of pages. If you only need chapter 4 (pages 87–143), splitting that range into its own file makes it far easier to annotate, share, or read on a tablet without carrying the entire book.

Separating signed pages from a contract

Contracts often have a main body and a signature page. If a client returns the signed last page and you need to file it separately, splitting out that single page is faster than scrolling through the full document repeatedly.

Preparing pages for OCR processing

Some OCR tools work better on smaller files. Splitting a 500-page scan into 50-page chunks before running OCR can speed up processing and reduce errors.

Sending a subset to a reviewer

If a reviewer only needs to see pages 20–35 of a proposal, splitting and sending just those pages is cleaner than sending the full document with a note about which pages to read.

Note on password-protected PDFs: You must unlock a password-protected PDF before splitting. The PDF Merge & Split extension will prompt for a password if it detects encryption. Enter the password once in the browser session and proceed normally.


How Many Pages Can You Split?

The PDF Merge & Split extension handles PDFs of any page count. Files with hundreds or even thousands of pages split correctly, though very large files may take a few extra seconds to process in the browser. For batch processing thousands of PDFs, Ghostscript or pdftk via command line is faster.

Split Any PDF — No Upload, No Limit

Extract exactly the pages you need. Download in seconds.

Add PDF Merge & Split to Chrome


Related Guides



Frequently Asked Questions

How do I split a PDF into individual pages?

Use the PDF Merge & Split Chrome extension. Open the extension, select the Split tab, load your PDF, choose "Split into individual pages," and download. Each page becomes a separate PDF file. Everything processes locally — no upload required.

Can I extract only specific page numbers from a PDF?

Yes. The PDF Merge & Split extension lets you specify a page range (e.g., pages 3–7) or select individual pages to extract. You can also use Ghostscript with the -dFirstPage and -dLastPage flags for precise page range extraction.

Does splitting a PDF damage the original file?

No. Splitting creates new output files — the original PDF is never modified. You can split the same PDF multiple times to extract different page ranges without any risk to the source document.

How do I split a 100-page PDF into sections of 10 pages each?

Use the "Split every N pages" option in PDF Merge & Split. Set N to 10, and the extension will produce 10 separate PDFs, each containing 10 pages. For command-line users, Ghostscript or pdftk can batch this operation.

Can I split a PDF without losing image quality?

Yes. Splitting a PDF extracts pages as-is — no re-encoding, no compression, no quality change. The images, fonts, and vector graphics in each extracted page are identical to the originals.

What is the fastest free way to split a PDF?

The PDF Merge & Split Chrome extension is the fastest option for most users. Install it once, and splitting any PDF takes 5–10 seconds. No account, no upload, no file size limit.

More Free Chrome Tools by Peak Productivity

Bulk Image Downloader
Bulk Image Downloader
Download all images from any page
Pomodoro Technique Timer
Pomodoro Technique Timer
25-minute focus timer with breaks
YouTube Looper Pro
YouTube Looper Pro
Loop any section of a YouTube video
Citation Generator
Citation Generator
Generate APA/MLA/Chicago citations
WebP to JPG/PNG
WebP to JPG/PNG
Convert WebP images to JPG/PNG
Auto Refresh Ultra
Auto Refresh Ultra
Auto-refresh pages at custom intervals