How to Split a PDF for Free — 4 Methods That Actually Work
Four free ways to split a PDF into separate pages or sections — no watermarks, no signup.
You have a 40-page PDF but only need pages 5 through 8. Or you need to break a long report into individual chapters. Or you just want to remove a couple of pages before sharing a document. Whatever the reason, splitting a PDF should be simple — and it is, once you know the right tool.
Here are four genuinely free methods, starting with the fastest.
Method 1: Use RapidTools in Your Browser (Fastest, Most Private)
This works on any device with a web browser — Windows, Mac, Linux, Chromebook, phone, or tablet. No software to install, no account to create.
- Open any browser (Chrome, Safari, Firefox, Edge).
- Go to rapidtools.online/split-pdf.
- Click the upload area or drag and drop your PDF.
- Select which pages or page ranges to extract (e.g. 1–3, 5, 8–12).
- Click Split PDF. Processing happens in your browser.
- Click Download to save the result.
This method preserves the original quality of every page — no re-encoding, no compression, no changes to fonts or images.
Method 2: Google Chrome — Print to PDF
If you already have Chrome installed, you can use its built-in Print function to extract specific pages from a PDF.
- Open your PDF in Google Chrome (drag the file into a Chrome window or right-click → Open with → Chrome).
- Press Ctrl+P (Windows/Linux) or Cmd+P (Mac) to open the Print dialog.
- Set the destination to Save as PDF.
- Under Pages, select Custom and enter the page numbers you want (e.g.
2-5, 8). - Click Save and choose where to save the new PDF.
Limitation: Chrome re-renders the PDF, which can slightly change formatting. Hyperlinks, form fields, and bookmarks are lost. For simple documents this is fine, but for complex layouts use Method 1 instead.
Method 3: Preview on Mac (Built-In)
If you're on a Mac, Preview can split PDFs without any extra software.
- Open your PDF in Preview (double-click the file).
- In the sidebar, make sure page thumbnails are visible (View → Thumbnails).
- Select the pages you want to extract — click one, then hold Cmd and click others.
- Drag the selected thumbnails out of Preview and onto your Desktop or a Finder folder.
- Preview creates a new PDF containing only the pages you dragged out.
Limitation: This works well for extracting a handful of pages, but gets tedious for complex splits. There's no way to specify page ranges by number — you have to manually select each thumbnail.
Method 4: Command Line with pdftk or qpdf (Power Users)
If you're comfortable with the terminal, pdftk and qpdf are free, open-source tools that can split PDFs with precision.
Using pdftk:
- Install pdftk:
sudo apt install pdftk(Linux) orbrew install pdftk-java(Mac). - Extract pages 5 through 10:
pdftk input.pdf cat 5-10 output pages5-10.pdf - Extract individual pages:
pdftk input.pdf cat 1 3 7 output selected.pdf
Using qpdf:
- Install qpdf:
sudo apt install qpdf(Linux) orbrew install qpdf(Mac). - Extract a page range:
qpdf input.pdf --pages . 5-10 -- output.pdf - Split every page into a separate file:
qpdf input.pdf --split-pages output-%d.pdf
Best for: Batch processing, scripting, or splitting large numbers of PDFs automatically. Not practical for one-off tasks unless you already live in the terminal.
Method Comparison
| Tool | App needed? | Preserves formatting? | Privacy | Watermarks? |
|---|---|---|---|---|
| RapidTools (browser) | No | Yes | Local only | None |
| Chrome Print to PDF | Chrome | Partially | Local | None |
| Preview (Mac) | Built-in (Mac only) | Yes | Local | None |
| pdftk / qpdf | Install via terminal | Yes | Local | None |
Common Split Scenarios
Here's how to handle the most frequent situations:
- Extract one page: Use RapidTools or Chrome Print — select just the page number you need.
- Split into chapters: Use RapidTools with multiple page ranges (e.g. 1–12, 13–28, 29–40). Download each range as a separate PDF.
- Remove specific pages: Extract everything except the pages you want to remove. For example, to remove page 4 from a 10-page PDF, extract pages 1–3 and 5–10.
- Split in half: If your PDF has 20 pages, extract pages 1–10 as one file and 11–20 as another.
- Split every page into a separate file: Use
qpdf --split-pagesfrom the command line, or run multiple extractions in RapidTools.
Frequently Asked Questions
What is the best free way to split a PDF?
A browser-based tool like RapidTools Split PDF is the fastest option. No software to install, no account to create, no watermarks, and your file never leaves your device.
Can I split a PDF without installing software?
Yes. Use a browser-based tool like RapidTools — it works on any device with a web browser. You can also use Chrome's Print to PDF feature to extract specific pages without installing anything extra.
Will splitting a PDF reduce quality?
No. Proper PDF splitting extracts the original pages without re-encoding. Fonts, images, and formatting remain identical. The only exception is Chrome's Print to PDF, which re-renders pages and may slightly alter layout.
Can I split a password-protected PDF?
If the PDF requires a password to open, you'll need to enter it first. If the PDF only has editing restrictions (no open password), most tools — including RapidTools — can still split it normally.
Rapid