- Understanding PDF Split Modes
- Method 1: PDF Merge & Split Chrome Extension (Recommended)
- Method 2: macOS Preview (Built-in, No Install)
- Method 3: Ghostscript (Command Line)
- Method 4: Adobe Acrobat (Paid, Feature-Rich)
- Common PDF Splitting Use Cases
- How Many Pages Can You Split?
- Related Guides
- Frequently Asked Questions
- Understanding PDF Split Modes
- Method 1: PDF Merge & Split Chrome Extension (Recommended)
- Method 2: macOS Preview (Built-in, No Install)
- Method 3: Ghostscript (Command Line)
- Method 4: Adobe Acrobat (Paid, Feature-Rich)
- Common PDF Splitting Use Cases
- How Many Pages Can You Split?
- Related Guides
- Frequently Asked Questions
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 — FreeUnderstanding 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
- Install PDF Merge & Split from the Chrome Web Store.
- Click the extension icon and select the Split tab.
- Click Add File and choose your PDF, or drag it into the extension window.
- 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
- Click Split. The result downloads automatically.
Split Your PDF in Seconds
Specify any page range. Download instantly. Files stay on your computer.
Install PDF Merge & SplitMethod 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
- Open your PDF in Preview.
- Go to View → Thumbnails to show the page sidebar.
- Select the pages you want to keep (hold Cmd to select multiple).
- 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
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.
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 ChromeRelated Guides
- How to Split PDF Pages Without Uploading
- How to Extract Specific Pages from a PDF
- How to Split a PDF by Chapters or Bookmarks
- How to Batch Split Multiple PDFs at Once
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.