Split a PDF without uploading it
Most online tools take your file to their server first. This one does not: the PDF stays on your device and the page’s own code does the splitting.
How a typical online tool works
The classic flow: you pick a file, it is uploaded in full to a server, a program there splits it, and you get a link to the result. At that moment your document is sitting on someone else’s disk.
Such services usually promise to delete files after a few hours. That is a promise, not a technical guarantee: you cannot verify it, and by then the document has already crossed a third-party network and may exist in backups and logs.
How in-browser splitting works
When you drop a file onto the page, the browser simply grants the page access to it on your own computer. A library then parses the PDF in the tab’s memory, assembles the new documents and hands them to you through an ordinary file save.
The network is not involved at all. Neither we, nor the hosting provider, nor your ISP can see the contents — there is nothing to intercept, because the document never travels.
How to verify it yourself
Do not take our word for it — check. The simplest test: open the page, wait until it has fully loaded, then turn off Wi-Fi or unplug the cable. Now pick a file and split it. It still works without a network, which means nothing is being sent.
A more precise test: press F12, open the Network tab and start the split. You will see that no request carrying your file ever appears.
When this actually matters
- Contracts, invoices and financial records that must not be shown to a third party.
- Medical reports, test results, documents belonging to your children.
- Scans of passports, driving licences and certificates — exactly what identity thieves look for.
- Company policies that explicitly forbid uploading work files to external services.
Questions & answers
So the site knows nothing about me at all?
Nothing about the contents. The site sees what any website sees: that a page was opened. The name, size and contents of your document stay on your device.
Why do other services upload files then?
Historically it was simpler: all the work happens on the server and the browser needs no capabilities. Modern browsers can process files themselves, but few teams rewrite a service that already works.
Is it slower than server-side splitting?
Usually the opposite: there is no upload and no queue to wait in. The splitting takes as long as your own processor needs, which is seconds.
Is there a file size limit?
No server limit, because there is no upload at all. Only your browser’s memory matters — a few hundred megabytes is fine on an ordinary computer.