How to Split a PDF Into Separate Pages or Smaller Files
Extracting a range, separating every page, and breaking a large document into size-limited parts — plus the mistakes that waste the most time.
Splitting a PDF sounds like one operation but covers several. Picking the right one first saves repeating the job.
Extracting a range
The most common need is pulling out a section — one chapter, one signed page, the pages an accountant asked for. You specify a range such as 4-9 and get a new document containing just those pages, in order.
Most tools accept several ranges at once, written as a comma-separated list like 1-3, 8, 12-14. Whether those become one combined document or several separate files is usually a separate option, so check it before processing.
Splitting every page
Sometimes you want each page as its own file — scanned invoices that need filing individually, or pages to be distributed to different people. This produces as many files as there are pages, which is why the output normally arrives as a ZIP archive.
Splitting by file size
When something downstream imposes a limit — an email attachment cap or an upload form — you can split by size instead of by page. Pages are added to each part until the next one would exceed your limit, then a new part starts.
Does splitting reduce quality?
It should not. Splitting copies existing page objects into new documents in the same way merging does, without decoding or re-encoding the content. Text stays text, images keep their original data, and fonts come across intact. If a split file looks worse than the original, the tool rasterised the pages rather than copying them.
Common mistakes
- 1Confusing printed page numbers with PDF page positions. A document with roman-numeral front matter will not line up — the page labelled 1 might be the ninth page of the file.
- 2Forgetting ranges are inclusive. 1-5 gives five pages, not four.
- 3Choosing separate files when you wanted one combined document, then having to merge them back.
- 4Not checking the page count of the result, which is the quickest way to spot an off-by-one range.
Your original file is never modified by splitting — a new document is produced and the source is left exactly as it was. If you only need to remove a few pages rather than extract them, Remove Pages is the more direct route.
Can I split a password-protected PDF?
Not while it is encrypted. The protection has to be removed first so the page content can be read.
How do I get one PDF instead of many?
Look for a merge or combine option alongside the range input. It puts everything you selected into a single document.
What happens to bookmarks?
Page content copies reliably. Document-level features such as outlines often do not survive, so check them if they matter.