Split PDF
Pull a page range out of a PDF, break a long document into chunks, or save every page as its own file. The split happens in your browser, so the document is never uploaded and the pages keep their original quality.
Runs entirely in your browser — nothing is uploaded
Drop a PDF here to split it
One file at a time. Nothing is uploaded.
How to use it
- Drop a PDF onto the box above, or click Choose a file.
- Pick a mode:
- Extract pages — one new PDF containing the pages you list.
- Split into ranges — one PDF per comma-separated group.
- Split every N pages — equal chunks, with a shorter last one if it does not divide evenly.
- Split every page — one PDF per page.
- Enter your pages or set the chunk size. The button tells you how many files you will get.
- Click it, then download each file from the list.
How it works
A PDF keeps its pages as separate numbered objects, with a page tree listing them in order.
Splitting does not need to understand or redraw anything — it needs to create a new document
and copy the page objects you want into it, then write a new tree. That is what happens
here, using the pdf-lib library running in your browser.
Because pages are copied rather than rendered and re-encoded, nothing degrades. It is also why splitting is fast: the work scales with the size of the pages you asked for, not with how complex they look.
The tool works out its plan before it parses anything. Your page selection is validated
against the document’s actual page count first, so an out-of-range page or a typo like
1- is reported immediately with the specific problem, and the number of output files is
known before any work starts. That number is what drives the warning when a mode would
produce more files than is comfortable to click through.
The source document is parsed once and copied from repeatedly, rather than re-read for each output — splitting into twenty parts therefore costs one parse, not twenty.
Tips
- Extracting a signature page or a single invoice from a long scan is the most common job here, and Extract pages with a single number is the quickest route to it.
- If you are splitting to get under an email attachment limit, check the sizes in the results list — a scanned document is rarely evenly distributed, and one image-heavy section can dominate. Compressing first with Compress PDF is often more effective than splitting.
- To rearrange or drop pages rather than separate them, use Rotate & Reorder PDF Pages. To put documents back together, use Merge PDF.
- Check a part in the PDF Viewer before sending it. Confirming you extracted the pages you meant to takes a few seconds.
Frequently asked questions
Is my PDF uploaded to a server?
Why does each file have its own download button instead of one zip?
Does splitting reduce quality or add a watermark?
What is the difference between "Extract pages" and "Split into ranges"?
1-3, 8-10 gives a single six-page PDF. Split into ranges gives you one file per group — the same 1-3, 8-10 produces two PDFs, one of three pages and one of three pages. Use Extract when you want a subset of a document; use ranges when you are breaking a document into sections.Can I extract pages that are not next to each other?
1, 4, 7-9, 12 is valid. In Extract mode they are combined into one document in page order. Duplicates are ignored, and a reversed range like 7-3 is read as 3-7 rather than reversing the page order, since that is nearly always a typo.Is there a limit on file size or page count?
Why is my password-protected PDF rejected?
Do bookmarks and form fields survive the split?
How are the output files named?
report-pages-1-3.pdf, report-page-7.pdf. A non-contiguous selection cannot be described as a range, so it is named by how many pages it holds. Everything lands in your normal downloads folder.Related tools
Merge PDF
Combine several PDFs into one file and drag the pages into the order you want before merging.
Rotate & Reorder PDF Pages
Rotate individual pages or drag them into a new order, then export the fixed PDF.
PDF to Image
Export each page of a PDF as a JPG or PNG image file.
Compress PDF
Shrink a PDF by re-encoding the images inside it, with a quality setting you control.
Browse every tool in PDF Tools.
Found a bug or want a feature? Tell us — ToolStash is built from user requests.