How to Split a PDF Into Individual Pages (5 Free Methods)
Whether you need to extract one page for a client, divide a report into chapters, or batch-process hundreds of documents — this guide covers every free method, from one-click browser tools to command-line speed runs.
Quick Answer: Fastest Free Method
For most people, the fastest path is a browser-based tool with no login. Open PDF Mavericks Split, drop your file in, click "Split into all pages", and download a ZIP of individual pages. The whole process takes under 30 seconds for a 20-page PDF. Your file stays in your browser — nothing is uploaded to a server.
If you're splitting PDFs regularly, or need to split 100-page documents quickly, jump to the command-line section — PDFtk can process the same job in under 2 seconds with a single command.
Quality note: Splitting never reduces quality. The output pages are binary copies of the originals — no re-encoding, no compression. Text, images, and fonts are identical to the source.
Browser-Based Tools (No Install)
Browser tools cover the vast majority of use cases. They work on Windows, Mac, Linux, and mobile — no software installation, no account required for the free tier.
1. PDF Mavericks Split (Recommended)
Processes entirely in your browser using the PDF.js engine. Zero uploads — your PDF never reaches any server. Supports splitting all pages, splitting by page range, or extracting specific pages. Output as individual files or a single ZIP.
Limitation: Very large PDFs (500+ pages) may be slow depending on your device's RAM.
2. iLovePDF
iLovePDF (217M visits/month as of 2026) offers four split modes: extract every page, select specific pages, split every N pages, and split by even/odd pages. Files are uploaded to their servers and deleted after 2 hours. The free tier caps at 50 MB per file and 300 pages, with 3 tasks per hour.
Best for: Users who need even/odd page splitting or custom naming of output files.
3. Smallpdf
Smallpdf's split tool has page-thumbnail previews, allowing you to visually select which pages to extract before splitting. You can also zoom in on thumbnails to read content before making a selection — useful when page numbers are unreliable. Free tier allows 2 tasks per hour without signup.
Best for: Visual page selection — when you need to see thumbnails before extracting.
4. PDF24
PDF24 is genuinely unlimited on the free tier — no file size caps, no daily limits, no watermarks. The interface is more utilitarian than Smallpdf but handles edge cases well: encrypted PDFs, unusual page sizes, and mixed-orientation documents all split correctly. Files are processed on their servers and deleted after processing.
Best for: Heavy use or when you keep hitting iLovePDF's 3 tasks/hour limit.
Desktop Apps
Desktop apps are the right choice when you're working offline, handling confidential documents, or splitting dozens of PDFs at once. These are the best free options.
PDF24 Desktop App (Windows)
PDF24 offers a free Windows desktop app (no internet required after install) that mirrors the web tool's functionality. Drag-and-drop splitting, batch mode for multiple files, and local processing. Download at pdf24.org — approximately 30 MB install.
Limitation: Windows only. No Mac or Linux version.
Preview (macOS — Built In)
Every Mac ships with Preview, which can extract individual pages without any download. Open your PDF in Preview, open the thumbnail panel (View → Thumbnails), select the pages you want, then drag them to your desktop — each drops as a separate PDF. For splitting all pages, this is slower than command-line tools but requires zero setup.
Best for: Mac users extracting a handful of specific pages — no install, no account.
Command Line: PDFtk and QPDF
For batch processing or large files, command-line tools are dramatically faster. PDFtk can split a 200-page PDF into 200 individual pages in under 2 seconds. Both tools are free, open-source, and available on Windows, Mac, and Linux.
PDFtk Server — Burst Command
PDFtk's burst command splits every page into a separate file. Install PDFtk Free from pdflabs.com (Windows) or via Homebrew on Mac.
# Split every page into individual PDFs
pdftk input.pdf burst output page_%04d.pdf
# Extract specific pages (e.g., pages 3, 5, and 7-10)
pdftk input.pdf cat 3 5 7-10 output extracted.pdf
# Batch: split all PDFs in a folder
for f in *.pdf; do pdftk "$f" burst output "${f%.pdf}_page_%04d.pdf"; done
Output files are named page_0001.pdf, page_0002.pdf, etc. The %04d format pads numbers to 4 digits for correct alphabetical sorting.
QPDF — Page Extraction
QPDF is the more actively maintained alternative. Install via Homebrew (brew install qpdf), Chocolatey on Windows, or apt on Linux.
# Extract a single page (page 5)
qpdf --pages input.pdf 5 -- input.pdf page_5.pdf
# Extract a range of pages (pages 3-8)
qpdf --pages input.pdf 3-8 -- input.pdf pages_3_to_8.pdf
# Split every page into separate files (bash loop)
n=$(qpdf --show-npages input.pdf)
for i in $(seq 1 $n); do
qpdf --pages input.pdf $i -- input.pdf page_$i.pdf
done
QPDF handles encrypted PDFs, password-protected documents, and malformed PDFs better than PDFtk. Prefer QPDF when PDFtk reports errors on problematic files.
Bookmarks caveat: When splitting, bookmarks that reference page ranges across the original document will break — they become orphaned references. PDFtk preserves per-page bookmarks but not document-level navigation trees. This is a structural limitation of the PDF format, not a tool issue.
Split Modes Explained
Most PDF tools offer multiple splitting modes. Understanding the difference prevents the common mistake of choosing the wrong mode and getting unexpected output.
Split All Pages
Every page becomes its own PDF. A 20-page document produces 20 files. Use this when you need to redistribute individual pages or archive each page separately.
Split by Page Range
Divide at specific points — e.g., pages 1-5 become File 1, pages 6-10 become File 2. Used for splitting reports with distinct chapters or sections.
Extract Specific Pages
Select pages 3, 7, and 12 — only those pages appear in the output. The rest of the document is discarded. Used when you need a subset of pages, not a clean split.
Split Every N Pages
Divide into equal-sized chunks — e.g., every 10 pages. Useful for distributing a 100-page PDF into 10 equal sections, or splitting scanned multi-document batches.
Split Even / Odd Pages
Separate even-numbered from odd-numbered pages. Used in double-sided scanning workflows where even and odd scans are processed separately and need to be interleaved later.
Split by Bookmarks
Split at each top-level bookmark — each chapter or section becomes its own file. Adobe Acrobat Pro and PDFtk support this. Most free online tools do not.
Tool Comparison
| Tool | Free | No Upload | File Size Limit | Batch | Best For |
|---|---|---|---|---|---|
| PDF Mavericks | ✓ | ✓ (browser) | No limit* | No | Privacy, quick splits |
| iLovePDF | ✓ (3/hr) | ✗ | 50 MB | Yes (Pro) | Even/odd modes, naming |
| Smallpdf | ✓ (2/hr) | ✗ | No limit | No | Visual thumbnail selection |
| PDF24 (web) | ✓ unlimited | ✗ | No limit | Yes | Heavy free use |
| PDF24 (desktop) | ✓ | ✓ | No limit | Yes | Windows offline use |
| macOS Preview | ✓ | ✓ | No limit | No | Mac: a few pages |
| PDFtk CLI | ✓ | ✓ | No limit | Yes | Automation, large files |
| QPDF CLI | ✓ | ✓ | No limit | Yes | Encrypted/broken PDFs |
* PDF Mavericks browser-based limit depends on device RAM for very large files.
Frequently Asked Questions
Can I split a PDF into individual pages for free?
Yes — multiple free methods exist. PDF Mavericks, iLovePDF, Smallpdf, and PDF24 all split PDFs into individual pages at no cost in your browser. For offline use, PDFtk Server and QPDF are free command-line tools available on Windows, Mac, and Linux. None of these require a paid subscription for basic splitting.
Does splitting a PDF reduce its quality?
No. Splitting a PDF only divides the file — it does not re-encode or compress the content. The output pages are identical copies of the originals. Text sharpness, image resolution, and embedded fonts remain unchanged. The only caveat: some browser-based tools re-render PDFs at a fixed DPI, which can slightly affect image-heavy pages. Tools that process PDFs as binary streams (PDFtk, QPDF, PDF Mavericks) never touch the content data.
What is the difference between 'split' and 'extract pages' in PDF tools?
Most tools use these terms interchangeably, but there's a subtle distinction. 'Split' usually means dividing the document at defined break points — every N pages, or at specific page numbers — producing multiple output files. 'Extract pages' typically means selecting specific pages (e.g., pages 3, 7, and 12) and pulling them into a new document. PDF Mavericks, iLovePDF, and Smallpdf support both modes.
Is it safe to upload my PDF to a free online splitter?
For non-sensitive documents, yes. iLovePDF and Smallpdf delete uploaded files from their servers within 1-2 hours. PDF Mavericks processes files entirely in your browser — your PDF never leaves your device, making it the safest option for confidential documents like contracts, tax returns, or medical records.
How do I split a PDF without losing bookmarks or hyperlinks?
Most online tools strip bookmarks and hyperlinks when splitting, since those structures reference the whole document. To preserve them, use PDFtk Server or Adobe Acrobat (paid). PDFtk's 'burst' command preserves annotations and page-level bookmarks. For hyperlinks that point to specific pages within the same PDF, they will break post-split regardless of tool — this is a structural limitation, not a tool deficiency.
Can I split a password-protected PDF?
Yes, but you need the password first. Most online tools will prompt you to enter the PDF's open password before splitting. Once unlocked, the split proceeds normally. If you've lost the password, splitting is not possible without the password recovery step first — see our guide on removing PDF passwords.
What is the fastest way to split a large PDF (100+ pages)?
For large PDFs, command-line tools are fastest. PDFtk Server's `burst` command splits a 200-page PDF in under 2 seconds. Online tools upload the entire file first, which can take 30-60 seconds on slow connections. If you split PDFs regularly, installing PDFtk on your machine (free, 5 MB) saves significant time over browser tools.
How do I split a PDF on my phone?
The easiest mobile method is using a browser-based tool like PDF Mavericks or iLovePDF directly in your phone's browser — no app download required. On iOS, the built-in Files app lets you view PDFs but not split them. On Android, PDF Utility (free) and Xodo support splitting. For occasional use, a browser tool is simpler than installing an app.
Ready to split your PDF?
Free, browser-based PDF splitter — no upload, no account, no limits. Works on any device.
Related PDF Guides
- How to Merge PDF Files Without Losing Quality — the reverse operation with zero quality loss
- How to Compress PDF Below 200KB for Free — reduce individual page files after splitting
- How to Remove a Password from a PDF — unlock before splitting password-protected files
Related Articles
Merge PDF Files Without Losing Quality
Which tools copy content streams directly versus silently re-encode your files.
Compress PDF Below 200KB for Free
Five methods to hit any file-size target — from one-click tools to Ghostscript.