How to Split a PDF Into Separate Pages
Sometimes you only need one page out of a fifty-page report, or you need to send each invoice page to a different client. This tool takes a single PDF and breaks it into individual one-page PDF files, packaged into a ZIP you can download and unzip anywhere.
Steps
- Upload the PDF you want to split.
- Click "Split PDF." The tool creates one PDF per page.
- Download the ZIP file and extract it to get each page as its own file, named page-01.pdf, page-02.pdf, and so on.
Worked example: Upload a 12-page annual-report.pdf. After splitting, you get annual-report-split.zip containing page-01.pdf through page-12.pdf.
If you only needed page 7 (say, the financial summary), you'd extract the ZIP and use page-07.pdf directly — no need to open the full report in a PDF editor to pull out one page.
How Splitting Works Under the Hood
The tool loads your PDF using pdf-lib, then for each page it creates a brand-new one-page PDF document and copies that single page's content into it. All resulting files are bundled client-side using JSZip, an open-source compression library, and handed to your browser as a single ZIP download. None of this touches a server.
Split vs. Extract vs. Delete Pages
| Task | What You Get |
|---|---|
| Split (this tool) | Every page becomes its own separate PDF file |
| Extract specific pages | Only the pages you choose, combined into one new PDF |
| Delete pages | Original PDF minus the pages you remove |
When You'd Use This
Real estate agents split a multi-property listing PDF into single-property sheets. Teachers extract individual worksheet pages from a workbook. Accountants separate a bundled statement into per-month files. Because each output page keeps its original resolution and formatting, nothing is lost in the process.
Frequently Asked Questions
Does splitting reduce PDF quality?
No, each page is copied at its original resolution with no re-compression.
Can I split just a few specific pages instead of all of them?
This version splits every page into its own file for simplicity; use the merge tool afterward if you want to recombine a subset.
Is my document uploaded anywhere?
No. The split happens locally in your browser and the file never leaves your device.
What file do I get back?
A ZIP file containing one PDF per page from your original document.
How are the output files named?
Sequentially as page-01.pdf, page-02.pdf, and so on, matching the original page order.
Is there a page count limit?
No hard limit is enforced, though very large PDFs (hundreds of pages) will take longer and use more browser memory.