Skip to main content

How to Split a PDF into Multiple Files

7 min read

A 47-page PDF lands in your inbox. You only need pages 12 through 18 for your meeting, or you need to pull each invoice out of a consolidated monthly statement. Splitting a PDF sounds like it should be simple — and with the right tool, it is. But there are several different ways to slice a document, and each one fits a different situation.

This guide walks through the most common splitting scenarios, the tools that handle them, and the trade-offs between each approach.

When you need to split a PDF

Splitting comes up more often than most people expect. Here are the situations that send people searching for a PDF splitter:

  • Extracting a section from a long report.Your company's quarterly report is 80 pages, but the client only needs the executive summary (pages 1–5) and the financial tables (pages 62–70). Sending the full document is unprofessional; sending two separate extracts is clean.
  • Separating individual invoices. Many accounting systems export a single PDF containing all invoices for the month. Each invoice needs to be filed or forwarded separately. You need to split the document into one file per invoice.
  • Removing pages before sharing.A signed contract includes cover pages, internal notes, or drafts that shouldn't go to the other party. Instead of extracting what you want, sometimes it's easier to think of it as removing what you don't.
  • Breaking up scanned documents. A batch scan of 50 paper documents produces one massive PDF. Each original document needs to be its own file for archiving or upload to a document management system.
  • Meeting email attachment limits. Some email servers reject attachments over 10MB or 25MB. Splitting a large PDF into smaller chunks lets you send it in parts.

Types of PDF splitting

Not all splits are the same. The method you use depends on what you're trying to achieve:

Extract a page range

The most straightforward split: pull pages 5 through 12 into a new file. The original document stays untouched, and you get a smaller PDF containing just the pages you specified. This is what you want when you know exactly which pages to extract.

Split into individual pages

Every page becomes its own PDF file. A 20-page document produces 20 separate files, typically bundled into a ZIP download. This is useful for batch-scanned documents where each page is an independent record, or when you need to reorder and selectively recombine pages later.

Split at fixed intervals

Divide the document every N pages. A 30-page PDF split every 5 pages produces six files of 5 pages each. This works well for standardized documents where each logical section has the same length — like a set of identical forms or test booklets.

Split by file size

Some tools let you specify a maximum file size, and they'll split the document into chunks that stay under that limit. This is purpose-built for the email attachment scenario. The splits won't necessarily land on logical page boundaries, but each piece will fit within your size constraint.

Method 1: Browser-based tools (no installation)

Online splitting tools are the fastest path from "I need to split this PDF" to "done." No software to install, no account to create. Upload, configure, download.

MakeMyPDF (this site)

Our Split PDF toolhandles all the common splitting modes directly in your browser. Your files never leave your machine — the splitting happens locally using JavaScript, which matters when you're working with contracts, financial documents, or anything you wouldn't want on someone else's server.

Here's the workflow:

  1. Open the Split PDF page.
  2. Drop your PDF onto the upload area.
  3. Choose your split mode: extract specific pages, split every N pages, or split into individual pages.
  4. For page ranges, enter them like 1-5, 8, 12-15 — commas between ranges, hyphens for spans.
  5. Click "Split" and download the result. Multi-file splits come as a ZIP archive.

Processing time depends on the document size. Most files split in under 5 seconds. Large documents with hundreds of pages may take 10–15 seconds since the browser is doing all the work.

iLovePDF and Smallpdf

Both services offer free PDF splitting with limitations. iLovePDF allows a handful of free tasks per day and processes files on their servers. Smallpdf gives you two free tasks daily before requiring a paid plan. Both work well for non-sensitive documents, but your files are uploaded to their infrastructure for processing.

The trade-off is straightforward: if the document contains anything confidential, a client-side tool like MakeMyPDFkeeps your data on your device. If privacy isn't a concern and you just want to split a product brochure, any of these tools will do the job.

Method 2: Desktop applications

Desktop tools work offline and handle large files without browser memory constraints. They're worth the setup if you split PDFs regularly.

macOS Preview

Preview doesn't have an explicit "split" function, but you can achieve the same result. Open the PDF, show the thumbnail sidebar (View > Thumbnails), select the pages you want, and drag them to your desktop. macOS creates a new PDF containing just those pages. It's manual and tedious for complex splits, but it works for quick extractions without installing anything.

PDF Arranger (Linux)

PDF Arranger shows a thumbnail grid of all pages. Select the ones you want, right-click, and export to a new file. Install it with sudo apt install pdfarrangeron Debian/Ubuntu. It's lightweight and handles the visual page-selection workflow better than command-line tools.

Adobe Acrobat Pro

Acrobat Pro has the most sophisticated splitting options: by page range, by bookmark, by file size, or by blank pages. The "Organize Pages" view lets you visually select and extract pages. At $23/month, it's overkill for occasional use, but if you process documents daily, the bookmark-based splitting alone can save significant time.

Method 3: Command-line tools

Command-line tools are fast, scriptable, and free. They're the right choice when you need to split PDFs as part of an automated pipeline — processing invoices nightly, splitting reports before upload, or integrating with a document management system.

qpdf

qpdf handles page extraction cleanly:

qpdf input.pdf --pages . 1-5 -- output.pdf

The . refers to the input file. You can extract multiple ranges:

qpdf input.pdf --pages . 1-3,7,12-15 -- output.pdf

To split a document into individual pages, use --split-pages:

qpdf --split-pages input.pdf output_%d.pdf

This creates output_1.pdf, output_2.pdf, and so on. The %d placeholder is replaced with the page number.

pdftk

pdftk (a long-standing command-line PDF utility, unrelated to this site) is another solid option:

pdftk input.pdf cat 1-5 output section.pdf

For splitting into individual pages:

pdftk input.pdf burst output page_%02d.pdf

The burst command creates one file per page. pdftk is widely available on Linux and macOS (brew install pdftk-java). The syntax is more intuitive than qpdf for basic operations, though qpdf has better handling of encrypted and malformed PDFs.

Ghostscript

Ghostscript can extract page ranges, but the syntax is verbose:

gs -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -dFirstPage=5 -dLastPage=10 -sOutputFile=extract.pdf input.pdf

As with merging, Ghostscript re-renders content during extraction, which can subtly change font rendering or image quality. Use qpdf or pdftk if preserving exact byte-level fidelity matters.

Choosing the right approach

ScenarioBest option
Quick one-off extractionAny browser-based tool
Confidential documentsMakeMyPDF (client-side, no upload)
Splitting hundreds of pages into individual filesqpdf or pdftk (command line)
Splitting by bookmark or sectionAdobe Acrobat Pro
Automated nightly processingqpdf in a shell script or cron job
macOS with nothing installedPreview (drag pages to desktop)

Common problems when splitting PDFs

The split file is almost as large as the original

PDFs store shared resources — fonts, images, color profiles — at the document level. When you extract 3 pages from a 100-page document, the output may still contain all the fonts and images embedded in the original, even if those 3 pages don't use them. Most splitting tools don't strip unused resources because doing so risks breaking the document. If the resulting file size is a problem, run it through a compression tool afterward to eliminate dead weight.

Links and bookmarks stop working

Internal links in a PDF reference absolute page numbers. If you extract pages 10–15 and a link on page 12 points to page 30, that link now points nowhere. There's no universal fix for this in free tools — the links were authored with the original page numbering in mind. For documents where internal navigation matters, you may need to manually update bookmarks in the extracted file.

Form fields lose their data

Interactive form fields are tied to the document's form structure. Splitting can separate a field from its value dictionary, resulting in empty fields in the output. If you need to preserve filled form data, flatten the form before splitting — this bakes the field values into the page content as static text, so they survive any structural changes.

Page labels don't match

Some PDFs use custom page labels (roman numerals for front matter, Arabic numerals starting over at the first chapter). After splitting, the labels in the new file may not start at 1 or may reference the original numbering scheme. This is cosmetic — it affects what your PDF viewer shows in the page number box but doesn't change the actual content. Most viewers handle it gracefully; if it bothers you, tools like qpdf can reset page labels.

FAQ

Can I split a password-protected PDF?

You'll need to remove the password first. Use an unlock tool(you'll need to know the password), then split the unprotected file. Most splitting tools — including ours — won't process encrypted documents directly.

Will splitting reduce the quality of my PDF?

Not with tools that do structural splitting (MakeMyPDF, qpdf, pdftk, Acrobat). These tools copy page objects without re-encoding, so text stays crisp and images keep their original resolution. Ghostscript is the exception — it re-renders content, which can affect quality.

Can I split a PDF and then merge the pieces back?

Yes. Splitting and merging are complementary operations. Split a document into sections, rearrange or discard what you don't need, and merge the remaining pieces back into a single file. This split-then-merge workflow is common when reorganizing long documents.

Is there a page limit for splitting?

Browser-based tools are constrained by available memory. In practice, documents under 200 pages split without issues. For very large documents (500+ pages, image-heavy), a command-line tool is more reliable. MakeMyPDF has no artificial limits — the ceiling is your browser's memory.

Ready to try it yourself?

Use our free tool — your files never leave your browser.

Try it free