PDF Split, Extract or Separate Pages
Split a PDF into single pages or extract a custom page range, entirely in your browser, no uploads.
Loading PDF Split, Extract or Separate Pages… If nothing happens, please enable JavaScript.
Frequently asked questions
Are my files uploaded to a server?
What is the maximum file size I can split?
Does this work with password-protected PDFs?
Will the extracted pages look identical to the originals?
How does this compare with splitting PDFs in Adobe Acrobat?
Can I extract non-consecutive pages into one file?
What file formats does the tool support as input?
What is the output quality when splitting?
Can I split PDFs in bulk or automate the process?
Which PDF versions and standards are supported?
About PDF Split, Extract or Separate Pages
Splitting a PDF means extracting a subset of its pages — either every page as an individual file, or a specific range of pages — into one or more new PDF documents. The PDF format stores pages as independent objects within a file, so splitting is a non-destructive operation: the content, fonts, images, and annotations on each extracted page remain exactly as they were in the source. This tool supports two modes — splitting a document into one file per page, or extracting a custom page selection (such as pages 1–3 and 7) into a single new PDF.
PDF splitting is essential in dozens of real-world situations. A lawyer may need to extract only the signature page from a lengthy contract. A student might want to pull out a specific chapter from a scanned textbook. An office administrator may need to separate individual invoices that were batch-printed into one file. Architects and engineers often receive large drawing sets and need to distribute individual sheets to different contractors. Whenever a multi-page PDF contains sections that need to be routed, stored, or submitted separately, a split tool is the fastest solution.
All processing happens inside your browser using pdf-lib, a JavaScript library that reconstructs PDF documents entirely in memory. Nothing is uploaded to a server. You choose your file, enter the desired page range or select 'split all pages', and the output is downloaded immediately to your device. Sensitive legal documents, financial statements, medical records, and proprietary technical drawings can all be split without any risk of cloud exposure or data retention by a third party.
When specifying page ranges, use comma-separated values and hyphens for ranges — for example, "1-3,5,8-10" extracts pages 1, 2, 3, 5, 8, 9, and 10 into a single PDF. Page numbering always refers to the physical page order within the file, not any printed page numbers that may appear in the document's footer. For very large PDFs (hundreds of pages), splitting all pages into individual files may be slow because each output PDF must be separately encoded; extracting a small range is significantly faster.
Pages, Objects, and the Architecture That Makes PDF Splitting Possible
One of the most elegant aspects of the PDF format is its page-independence. Unlike a Word document, where removing a paragraph can reflow every subsequent page, a PDF stores each page as a self-contained object that includes its own instruction stream, resource dictionary, and media box. Pages reference a shared resource catalogue (fonts, images, colour profiles) but do not depend on each other for rendering. This architecture is what makes splitting and page extraction a clean, lossless operation — you simply copy the desired page objects and their referenced resources into a new file.
The concept of random-access documents predates PDF. Adobe's PostScript, the language PDF was derived from, was a sequential stream format: to print page 50 of a PostScript file you had to process all 49 preceding pages. John Warnock's team solved this for PDF by introducing the cross-reference table — a lookup index at the end of the file that gives the byte offset of every object, enabling any viewer to jump directly to any page without sequential processing. This cross-reference table is rebuilt whenever a PDF is split, merged, or modified, which is why tools like pdf-lib can assemble new documents from page subsets so efficiently.
The largest PDF ever created is believed to be NASA's technical standards library, which at various points has included thousands of documents merged into single archive files. Government agencies worldwide have pushed PDF to its structural limits — the format now officially supports page dimensions as small as 1/72 of an inch and as large as 381 kilometres (about 1.5 million points), making it technically capable of representing everything from a postage stamp to a city-scale engineering drawing in a single page object.