Split PDF
Pull specific pages out of a PDF, or break it into one file per page. Free, no signup, no watermark β and nothing is uploaded.
Split a PDF without uploading it
Splitting a PDF usually means handing the whole document to a server so it can give you back a part of it β which is the wrong shape for a bank statement, a medical report, or a contract where you only wanted to send one clause. This splitter uses pdf-lib in your browser, so the document is read from your disk and the new file is written back to it. Nothing is transmitted at any point.
Two ways to split
Extract a range produces one new PDF containing exactly the pages you named, in the order you named them β so 3, 1, 2 genuinely reorders, and it doubles as a page-remover: list the pages you want to keep. Every page separately produces one PDF per page, named after the original. Downloads are staggered slightly, because browsers throttle a burst of simultaneous downloads and silently drop some.
How to write a page range
Use commas for individual pages and a hyphen for a span: 1-3, 5, 8-10. A descending span such as 10-8 is read in that order. Pages outside the document are ignored rather than treated as an error, so one typo in a long list does not discard the rest of it. Duplicates are removed. The page count of your document is shown once it loads, so you never have to guess the upper bound.