FileKit
All posts
·6 min read

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. Instead of sending the whole file and telling someone "just look at pages 47 through 52," you hand them exactly what they need.

Splitting is also the first step in many document workflows. Legal teams split contracts to route signature pages. Accounting splits batch-scanned invoices into individual records. Teachers split exam papers to grade one question at a time. The use cases are everywhere.

Three Ways to Split a PDF

1. Browser-Based Tools (No Install Required)

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, which matters for legal documents, medical records, and anything you wouldn't email to a stranger.

Browser-based splitting works on any device — Windows, Mac, Chromebook, even a phone. No software to install, no account to create, no file size limits beyond what your device memory can handle.

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. You can also select pages in the sidebar and press Delete to remove them from the document, effectively splitting by removal.

The limitation: Preview doesn't support splitting into multiple files in one operation. If you need pages 1-5 as one file and 6-10 as another, you'll need to repeat the process. For anything beyond simple extraction, a dedicated tool is faster.

3. Command Line with qpdf

For automation and scripting, qpdf is the standard open-source tool:

# Extract pages 1-5 into a new file
qpdf input.pdf --pages . 1-5 -- chapter1.pdf

# Extract pages 6-10
qpdf input.pdf --pages . 6-10 -- chapter2.pdf

# Split every page into individual files
qpdf input.pdf --split-pages output-%d.pdf

You can specify multiple page ranges and even pull pages from different source PDFs into a single output. This makes qpdf powerful for batch processing — combine it with a shell loop and you can split hundreds of files unattended.

Understanding Page Ranges

Page range syntax is surprisingly flexible in most tools, but the conventions differ slightly. Here's what the common notations mean:

  • 1-5 — Pages 1 through 5 inclusive
  • 1,3,5 — Only pages 1, 3, and 5
  • 1-3, 7-9 — Pages 1-3 and 7-9 combined
  • 5- — Page 5 to the end (supported in some tools)
  • r1 — Last page (reverse indexing, qpdf-specific)

One common pitfall: 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 of the file. Always verify using the thumbnail view before splitting.

Split Strategies for Common Scenarios

Extracting a Chapter from a Textbook

Find the page range in the table of contents. Remember that the PDF page number often differs from the printed page number by a fixed offset (e.g., the preface adds 12 pages). Split, then compress the result — the extracted chapter often carries font subsets and metadata from the full book, making it larger than necessary.

Separating Invoices from a Batch Scan

If each invoice is the same number of pages (e.g., 2 pages each), use the "split every N pages" option. If invoice lengths vary, you'll need to manually specify ranges or use a tool that detects page breaks.

Pulling Signature Pages from a Contract

Identify the signature pages, split them out, then add your digital signature before sending back. This avoids sharing the entire contract when only the signed pages are needed for countersigning.

Tips for Clean Splits

  • Verify the result immediately. Open the split PDF and confirm the pages you need are present and in the right order. It takes ten seconds and saves embarrassment.
  • Compress after splitting. The split file may still carry metadata, unused font subsets, or image data from pages that were removed. A quick compression pass can trim 20-40% of extra bytes.
  • Consider merging later. If you split a document for separate review, you can merge the pieces back together after each section is reviewed or signed.
  • Name files descriptively. "contract-signature-pages.pdf" is infinitely better than "split-output-3.pdf" when you find it in your downloads folder three months later.

Split vs. Delete Pages: Which to Use?

Splitting creates new files from selected pages while leaving the original intact. Deleting pages modifies the document by removing unwanted pages. Use splitting when you need multiple output files or want to preserve the original. Use page deletion when you just want to clean up a single document (remove blank pages, remove a cover sheet, etc.).

Frequently Asked Questions

  • Does splitting reduce file size? Sometimes significantly. If the original PDF has large images on pages you don't include, the split file will be much smaller. However, shared resources like fonts may still be embedded in full — compress afterward for best results.
  • Can I split a password-protected PDF? You'll need to unlock the PDF first. Most splitting tools cannot modify encrypted files.
  • Will bookmarks and links survive? Internal bookmarks that point to pages outside the split range will break. External hyperlinks (URLs) are preserved.