How to Split a PDF into Separate Files
A guide to extracting pages from a PDF — covering browser tools, macOS Preview, command-line utilities, and tips for getting clean splits.
Why Split a PDF?
PDFs often contain more pages than you need to share. A 200-page report where only chapter 3 matters, a contract where the counterparty only needs their signature pages, or a scanned document with blank pages mixed in — splitting solves all of these.
Three Ways to Split a PDF
1. Browser-Based Tools
The fastest approach for most people. FileKit's PDF splitter runs entirely in your browser — upload a file, choose "Every page" or enter custom ranges like "1-3, 5, 7-10", and download the result. Your file never touches a server.
2. macOS Preview
Open the PDF in Preview, show the sidebar (View → Thumbnails), select the pages you want, then drag them to the desktop. Preview creates a new PDF from just those pages. Quick, but limited to Mac users.
3. Command Line with qpdf
For automation and scripting, qpdf is the standard tool:
qpdf input.pdf --pages . 1-5 -- chapter1.pdfThis extracts pages 1 through 5 into a new file. You can specify multiple page ranges and even pull pages from different source PDFs.
Tips for Clean Splits
- Check page numbers vs. page indices. Many PDFs have a cover page or Roman-numeral preface. Page "1" in the viewer may not be the first physical page.
- Verify the result. Open the split PDF and confirm the pages you need are present and in the right order.
- Compress after splitting. The split file may still carry metadata or unused font subsets from the original. A quick compression pass can trim extra bytes.
Common Use Cases
- Extracting a single chapter from a textbook or manual
- Separating invoices in a batch-scanned document
- Pulling signature pages from a legal contract
- Breaking a photo album PDF into individual images