PDF ToolsΒ·5 min

How to Split a PDF File: Extract Pages or Save Separate Files

Learn how to extract one page, a range, or split every page into its own PDF β€” fast, free, and in your browser.

Why split a PDF?

PDFs are designed to be portable and self-contained, but that same strength is what makes them hard to break apart. A 200-page report might contain a single chapter you actually need. A scanned book may have a cover image you want to use elsewhere. A long contract might bury the signature page in the back. In each case, the answer is the same: split the PDF.

The reasons people need to split a PDF are practical and frequent:

  • Extract one section: Pull chapter 3 out of a 200-page manual so you can email it to a colleague.
  • Separate large files: Break a 500-page scan into per-chapter files that are easier to upload, share, and read.
  • Save specific pages: Keep just pages 12-15 of a contract as evidence, ignoring the rest.
  • Reuse embedded content: Grab the diagram on page 47 and turn it into an image.
  • Reduce file size for sharing: Many email and upload portals cap attachment size. Splitting a 50 MB PDF into five 10 MB chunks gets around that limit.
  • Privacy: Send only the relevant pages of a financial statement, not the whole document.

The good news: with the right tool, splitting a PDF is a 10-second job, and you do not need to install anything.

Method 1: Use UtilBoxx's Free PDF Splitter (Recommended)

The fastest, safest, and most private way to split a PDF is UtilBoxx's PDF Split tool. It runs entirely in your browser, so your file never leaves your device. There is no upload, no signup, and no watermark on the output.

Here is how to use it:

  1. Go to utilboxx.com/en/tools/pdf/split
  2. Click the upload area and select your PDF (or drag and drop)
  3. Choose how you want to split: by page range, by every N pages, or by extracting selected pages
  4. Click "Process"
  5. Download the resulting PDFs (usually a zip of multiple files)

Why we recommend this method:

  • 100% free, no account, no signup, no email gate
  • Privacy-first: everything happens locally in your browser. The file never reaches a server.
  • Three splitting modes: extract a range, split into N-page chunks, or pick specific pages individually
  • Works on any device: Windows, Mac, Linux, ChromeOS, iOS, Android β€” anything with a modern browser
  • Batch friendly: split one file into many, or process many files in a row
  • No watermarks on the output PDFs

If you only need to split a PDF once in a while, this is by far the lowest-friction option.

Method 2: Adobe Acrobat Pro (Paid)

Adobe Acrobat Pro is the heavyweight of the PDF world and the tool most legal and publishing teams default to. Its "Organize Pages" view lets you visually drag pages into new files, split by bookmark, or split by file size target. The interface is polished, and the output is reliable.

The catch is the price. Acrobat Pro costs roughly $19.99 per month (about $240 per year) on a subscription. For a one-off split, that is a poor trade. You also need a desktop install, which can be heavy on older machines.

Acrobat is worth it only if you already use it for editing, redaction, e-signatures, or form creation. If splitting is all you need, a browser-based tool does the job without the bill.

Method 3: macOS Preview

On a Mac, you can use the built-in Preview app to split a PDF manually, though it takes a few more steps than a dedicated tool:

  1. Open the PDF in Preview
  2. Click View > Thumbnails to show the page panel
  3. Select the pages you want to keep in a new file
  4. Drag those thumbnails to your desktop (or into a new Preview window)
  5. Save the new file

This method is Mac only and works best for small splits. It is not practical for splitting a 200-page document into per-chapter files, since you have to drag and save repeatedly.

Method 4: Command line with qpdf or pdftk

If you are comfortable in a terminal, the open-source tool qpdf is the most reliable CLI option. Install it with Homebrew (`brew install qpdf`), then:

```bash # Extract pages 1-5 into a new file qpdf input.pdf --pages input.pdf 1-5 -- out.pdf

# Extract single pages 1, 3, 7 qpdf input.pdf --pages input.pdf 1,3,7 -- out.pdf

# Split every page into its own file mkdir out && qpdf --split-pages input.pdf out/page.pdf ```

The `pdftk` tool offers similar capabilities but is unmaintained and pulls in heavy Java dependencies. qpdf is faster, smaller, and actively maintained. Both are excellent for scripting batch splits across hundreds of files.

Common questions

Will splitting a PDF reduce quality?

No. Splitting a PDF copies the original page content into a new container without re-encoding it. Text remains crisp, images stay at their original resolution, and fonts are preserved exactly. The only thing that changes is which pages are in which file.

Can I split a password-protected PDF?

Password-protected PDFs can be split, but you usually need to remove the password first so the tool can read the contents. Use a PDF unlock tool to clear the password, then split the unlocked file. Only do this on documents you own or have permission to modify.

How do I extract just one page from a PDF?

With UtilBoxx's PDF Split tool, choose "Extract specific pages" and enter the single page number. You will get a one-page PDF as output. The original document is untouched.

Can I split a scanned PDF?

Yes. Scanned PDFs are just images wrapped in a PDF container, and splitting works the same way. The pages do not change resolution or quality. If you also need the text of the scans to be searchable, run the split first, then use an OCR tool on the result.

Is it safe to use an online PDF splitter?

It depends on the service. UtilBoxx processes everything in your browser β€” no upload, no server-side processing, no logs. With other tools, assume your file is being uploaded to a remote server and read their privacy policy carefully. Avoid uploading any document containing personal, financial, medical, or legally sensitive information to a splitter you do not trust.

What is the difference between splitting and extracting pages?

In most tools the two terms overlap. Splitting usually means breaking a PDF into multiple smaller PDFs. Extracting typically means pulling a specific page or range into a single new file. UtilBoxx's tool supports both modes in one place.

Conclusion

Splitting a PDF is one of those small tasks that comes up constantly and should not require a paid subscription or a software install. For most people, UtilBoxx's free PDF Split tool is the obvious choice: it is private, fast, and free, with no signup and no watermark.

If you are on a Mac and just need a quick split, Preview works in a pinch. If you are scripting batch work, qpdf in the terminal is unbeatable. And if you already pay for Adobe Acrobat for other reasons, its "Organize Pages" view is excellent.

For everything else, head to UtilBoxx PDF tools and you will find a complete, privacy-first toolkit for working with PDFs β€” all in your browser.