Splitting a PDF is the mirror operation of merging — instead of combining documents, you're separating them. The right splitting method depends on what you're trying to achieve: extracting every page individually, dividing a document at a specific page, or pulling out a non-contiguous selection of pages. This guide covers all scenarios with a method for every platform.
Common use cases where splitting is the right solution:
Folium's Split PDF tool offers two modes: extract every page as its own PDF (bundled in a ZIP), or split the document at a specific page number into two parts. Both modes run entirely in your browser with no file upload.
page_1.pdf, page_2.pdf, etc., all packaged into a single ZIP download.10 creates Part 1 (pages 1–10) and Part 2 (pages 11 to end).If you need pages that aren't in a neat range (e.g. pages 3, 7, 15, and 22), use Extract Pages instead. It accepts comma-separated page numbers and ranges like 3,7,15,22.
Folium's Extract Pages tool is more flexible than the basic split — it lets you specify any combination of individual pages and ranges, and the output contains only those pages in the order you specified.
Input examples:
5 — extracts only page 51,3,7 — extracts pages 1, 3, and 7 (non-contiguous)10-20 — extracts pages 10 through 20 inclusive1,5-8,15 — extracts page 1, pages 5–8, and page 155,3,1 — extracts pages 5, 3, and 1 in that order (reordering as you extract)This is the tool to use when creating a "summary" document from a long report — pull the executive summary, key charts, and conclusion pages into a standalone document without anything else.
Acrobat Pro offers the most visual split experience. You see page thumbnails for the entire document and can set split points by clicking rather than typing page numbers — helpful for long documents where you're navigating by visual content rather than knowing exact page numbers.
The "Top-level bookmarks" split mode is particularly powerful for technical documentation or ebooks — it automatically splits at every chapter without needing to know page numbers.
Preview can extract individual pages to new files using drag-and-drop from the thumbnail sidebar.
For batch splitting of many files, Ghostscript is the most powerful free option. It's available on Windows, macOS, and Linux.
Extract pages 5–10 from a PDF:
gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dFirstPage=5 -dLastPage=10 -sOutputFile=output.pdf input.pdf
Split every page into its own file using a shell loop:
for i in $(seq 1 $(pdfinfo input.pdf | grep Pages | awk '{print $2}')); do gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dFirstPage=$i -dLastPage=$i -sOutputFile=page_$i.pdf input.pdf; done
Ghostscript preserves text layers, vector graphics, and embedded fonts perfectly through the split operation.
Browser-based tools process files in your device's RAM. For files over 100MB:
| Method | Best For | Cost | Privacy | Non-contiguous Pages |
|---|---|---|---|---|
| Folium Split | All pages or split at page | Free | Local | Use Extract Pages |
| Folium Extract | Any page selection | Free | Local | Yes |
| Acrobat Pro | Visual split, bookmarks | $23/mo | Local | Yes |
| macOS Preview | Single pages, Mac only | Free | Local | Yes |
| Ghostscript CLI | Batch operations | Free | Local | Scripting needed |
All 20 tools run in your browser — no upload, no account, no watermarks added to your files.
Browse All 20 PDF Tools →