Search "split PDF" and every top result works the same way: you upload your document to their server, their server cuts it, and you download the pieces. For a recipe PDF, fine. For a contract, a bank statement, a medical record, or anything under NDA, you have just transmitted a sensitive document to an unknown third party — usually without reading the retention policy.
There is no technical reason for the upload. Splitting a PDF is not heavy computation; your browser can do it in milliseconds.
How browser-local splitting works
A PDF is a container of numbered page objects. Splitting means copying selected page objects into a new container and rewriting the index — no rendering, no OCR, no server-grade hardware required. Modern browsers expose everything needed:
- File API reads the document into memory straight from the drop
- JavaScript PDF libraries parse and rebuild the page tree locally
- Blob URLs hand the finished files to your download folder
The split.tools PDF splitter does exactly this. The file is opened in your tab's memory, cut there, and the results are saved from there. Close the tab and everything is gone.
How to verify a tool is actually local
Don't take a landing page's word for "secure." Check:
- Open DevTools → Network tab before dropping your file. A local tool shows no request containing your document — no POST, no multipart upload, no "presigned URL" call.
- Try it offline. Load the page, disconnect Wi-Fi, then split. Local tools keep working; upload tools fail instantly.
- Read what "delete after 2 hours" implies. A deletion promise means the file was on their server. Local tools have nothing to delete.
Splitting a document, step by step
- Drop the PDF on the splitter mat. Page thumbnails render locally so you can see what you're cutting.
- Choose a mode: pick pages by hand (click thumbnails to build one extracted PDF), page ranges like
1-3, 5, 8-10(one PDF per range), or every N pages (chunk a long document evenly). - Press Split & download. One range saves as a PDF; multiple pieces arrive as a single ZIP.
What about password-protected PDFs?
An encrypted PDF must be decrypted before its pages can be copied — that requires the password, by design. Remove the password first (any PDF viewer with the password can "print to PDF" an unlocked copy), then split. A tool that splits a protected PDF without the password would be a security problem, not a feature.
Splitting locally isn't a premium feature — it's the simpler architecture. Split your PDF now; it never leaves your machine.