Splitting a PDF into multiple files means pulling specific pages or page ranges out of one document and saving them as separate files. You might be breaking a scanned bundle of invoices into individual receipts, pulling one chapter out of a report, or separating a signed contract from its appendix. LockerPDF's Split PDF tool does this directly in your browser -- the file is never uploaded to a server, so it works the same for a routine document as it does for something sensitive.
The two ways to split a PDF
LockerPDF's Split PDF tool offers two modes, and picking the right one depends on what you're trying to end up with:
- Extract specific pages. You type in page ranges -- like
1-3,5,7-9-- and each group becomes its own file. In this example you'd get three separate PDFs: pages 1 through 3, page 5 alone, and pages 7 through 9. This is what you want when you need particular sections pulled out, not the whole document broken apart. - Split every page into a separate file. Every single page of the source PDF becomes its own one-page PDF. This is what you want when you need to fully separate a document -- for example, turning a 20-page scanned batch into 20 individual files.
Both modes run through the same tool -- you just switch which one you want with a toggle before clicking "Split PDF."
How to split a PDF, step by step
- Go to the Split PDF tool and drag your file into the dropzone, or click to browse for it.
- Once it loads, you'll see the page count and a preview of the first page. Choose a mode: "Extract specific pages" or "Split every page into a separate file."
- If you picked "Extract specific pages," type in the ranges you want -- for example
1-3,5,7-9creates three files from those groups. Each comma-separated group in your input becomes its own output file. - Click "Split PDF." If your input produces a single file, you'll get a direct PDF download. If it produces more than one file, you'll get a ZIP archive containing all of them.
- Download the result. There's no processing delay to wait on beyond what your browser needs -- nothing is sent anywhere first.
Extracting pages vs. splitting every page: which do you need?
If you're not sure which mode applies, ask what the end result needs to look like. Extracting a chapter, a signature page, or a specific set of exhibits from a longer document is a job for page ranges -- you know exactly which pages matter and want them grouped logically. Breaking a whole document apart -- turning a merged batch of scanned pages back into individual files, or prepping every page of a form for separate distribution -- is a job for "split every page," since you want a 1:1 mapping between input pages and output files without typing out every page number.
If you only need one page pulled out, you can also just type that single page number, like 4, in the ranges field rather than switching modes.
Why this doesn't require uploading your file
Splitting a PDF is a structural operation -- it means reading the page tree of an existing PDF and writing out new PDF files that each contain a subset of those pages. That's something a JavaScript library can do directly in a browser tab using the File API, without needing server-side processing power. LockerPDF's Split PDF tool uses pdf-lib to read your file, build the new documents, and hand them back to you -- all before anything would have had a chance to leave your device. You can verify this yourself: open your browser's developer tools (F12), go to the Network tab, and split a file. You won't see an outgoing request carrying your document's bytes.
What happens to quality and formatting
Splitting doesn't touch the content of the pages themselves -- it copies the original page objects into new files, so text stays selectable, images stay at their original resolution, and no compression or watermark is applied. The output pages are identical to the source pages; they're just organized into separate files.
After splitting: merging or reordering
If you split a document and later need to recombine some of the resulting files, or reorder pages within one of them, Merge PDF handles putting files back together in whatever order you choose, and Organize PDF handles per-page rotation, deletion, and reordering within a single file. Both run the same way -- entirely in your browser.
FAQ
Are my files uploaded anywhere when I split a PDF?
No. Splitting happens entirely in your browser using JavaScript -- your PDF is read from disk, processed in memory, and the result is handed back to you without ever being sent over the network.
How do I extract just one page from a PDF?
Use the "Extract specific pages" mode and enter just that page number, like 4. You'll get a single-page PDF as the result. You can also use "Split every page into a separate file" if you want every page pulled out individually at once.
What format do I get back after splitting?
If your input produces exactly one output file, you get a PDF directly. If it produces more than one -- multiple ranges, or every page split individually -- you get a ZIP archive containing each file.
Does splitting a PDF reduce its quality or add a watermark?
No. The output pages are copied directly from the original file's page objects -- text stays selectable, images stay at full resolution, and no watermark or compression is applied during the split.