How to Split a PDF
Before I started building PDF tools, I thought "split a PDF" was one operation. It's actually four, and picking the right one saves you time and prevents mistakes.
This guide walks through when each makes sense, with real examples from people who've asked me for help.
What's in this guide
The four splitting methods
1. Split by range
You specify one or more ranges like 1-3, 5, 7-10 and get one output file per range. Ranges are inclusive: 1-3 means pages 1, 2, and 3.
Best for: documents where the boundaries are already known — chapters, sections, appendices.
Common mistake: forgetting that PDF page numbers don't always match what's printed on the page. A book with roman-numeral front matter might have "Chapter 1" on what is actually page 7.
2. Split every N pages
Chop the document into equal chunks. N=10 gives you files with pages 1-10, 11-20, 21-30, and so on. The last file may be shorter.
Best for: archiving, printing in batches, sending excerpts to a mailing list with a size limit.
Common mistake: using this when the natural boundaries don't align with N. A 47-page report split every 10 pages gives you an awkward 7-page last file.
3. Extract specific pages into one file
You select pages (say 3, 7, and 12) and get one output file with just those pages.
Best for: pulling specific pages out of a large document — a single chart, a signature page, a reference section.
In DSPDF this is the Extract Pages tool, separate from split.
4. Split into individual pages
Every page becomes its own file. A 30-page PDF produces 30 files in a ZIP.
Best for: prepping scans for OCR, feeding pages into another system one at a time, or distributing single-page items.
Common mistake: using this when you only need a few pages. You'll end up with 30 files and no easy way to find the one you want.
Choosing the right one
The easiest way to choose is to answer two questions:
- Do I want one output file or many? One → extract. Many → split.
- Do the boundaries follow a rule? Yes (every N) → use that. No (chapters) → use custom ranges.
| You want | Use |
|---|---|
| Just pages 5-8 in a new PDF | Extract Pages |
| Every chapter as its own file | Split by custom ranges |
| Ten-page packets for printing | Split every 10 pages |
| One file per page | Split every 1 page |
| Remove pages 3 and 7 | Delete Pages (the inverse) |
Real-world examples
The student with a 200-page textbook scan
She only needed chapters 4-6 for a class. Scanned PDFs don't preserve chapter boundaries as metadata, so she had to find the page ranges manually. Then she used extract pages to pull just those chapters into one file for easier annotation.
Result: a 62-page annotated chapter file instead of a 200-page book.
The freelancer with a combined invoice packet
He'd been emailing a single 40-page PDF containing all his invoices for the quarter. Clients complained. He now uses split every 1 page once a quarter, then names each resulting file with the invoice number. Now clients get one invoice per email.
The lawyer with a signed contract
She needed to send only the signature page to her records system, keeping the rest of the contract separate. She used extract pages to pull page 12 (the signature page) and saved it separately.
Important: extracting pages from a signed contract invalidates any cryptographic digital signature on the original. For visual signatures (drawn or typed), extraction is harmless. This distinction matters.
The teacher with lecture slides
She had one big PDF of all her slides and wanted a handout per lecture. She used split by range to produce 12 files, one per lecture, based on the slide numbers she already had in her notes.
Pitfalls to avoid
1. Page numbers in the printed content vs PDF page indices
The number printed at the bottom of a page is often not the PDF's page index. Front matter (copyright page, table of contents) usually uses roman numerals. This means "page 5" in your head might be page 11 in the PDF.
Fix: open the PDF, scroll to the page you want, and note the PDF reader's page number (usually shown in the toolbar), not the printed one.
2. Password-protected files
You can't split what you can't open. Unlock first with a tool that accepts the password you know.
3. Bookmarks and form fields
Same issue as merging: bookmarks and interactive fields usually get lost when pages are recombined into new files. Documented limitation of client-side tools.
4. Output filename collisions
If you split three different PDFs on the same day and they all produce files named "pages_1-10.pdf", you'll have a bad time. Our split tool prefixes filenames with the source PDF name to avoid this.
5. Large outputs
Splitting a 500-page PDF every 1 page produces a ZIP with 500 files. That ZIP can be slow to build in a browser. If you're hitting performance limits, split in batches.
FAQ
What's the difference between split and extract?
Split produces multiple output files. Extract produces one output file containing selected pages. Pick based on how many files you want at the end.
Can I split a password-protected PDF?
Not directly. Unlock it first with the password you know. See our Unlock PDF tool.
Does splitting reduce quality?
No. Splitting rearranges pages into new containers without re-encoding content. Page content is preserved byte-for-byte (modulo the container rebuild).
How do I split into more than 100 files?
Split in batches: pages 1-100, 101-200, and so on. Browser memory limits make very large single operations risky.
Can I split a PDF by chapters?
Yes — if you know the page ranges for each chapter. Split by custom ranges: 1-24, 25-47, 48-72. There's no automatic chapter detection.