What Client-Side PDF Editing Means
Plenty of sites claim to be private. Very few explain what that means technically, and almost none tell you how to check. This does both.
Published 2026-07-21 · Trump PDF
Server-side versus client-side, concretely
A server-side tool is a web form: your file is uploaded, a program on a remote machine transforms it, and you download the result. A client-side tool ships the program to you instead. The page you load contains the whole application, your browser runs it, and the file is read from disk into your tab's memory — the same way a photo you attach to an email is read before you actually send it.
What makes this newly possible
Two things changed. Browsers gained real capabilities — Canvas for rendering, typed arrays for binary data, Web Workers for background threads — and WebAssembly made it possible to run mature, compiled libraries at close to native speed inside a tab. Rendering engines, PDF writers and OCR engines that once needed a server now run acceptably on a laptop. That is why in-browser tools appeared in the last few years rather than a decade ago.
The honest trade-offs
Client-side is not strictly better. Your own processor does the work, so heavy jobs like OCR on a hundred pages are slower than a server farm. Very large files are limited by device memory. The whole application must download before anything happens, so the first load is larger. And you cannot pick up your work on another device, because nothing was stored anywhere. In exchange, your document never leaves your machine, there are no per-file limits, and the tool can keep working with the network disconnected.
How to verify a privacy claim in fifteen seconds
Open your browser's developer tools and select the Network tab, then use the tool on a file. Watch what happens. Requests that download JavaScript, fonts and WebAssembly are the application arriving. What you are looking for is any request that goes the other way — a POST or PUT carrying megabytes of data at the moment you selected your file. If your document were being uploaded, it would be plainly visible there. For extra certainty, disconnect from the internet after the page loads: a genuinely client-side tool keeps working.
What client-side does not protect you from
It is not magic. The site still sees your IP address like every website you visit. Third-party fonts or libraries loaded from a CDN reveal that a visit happened, though not what your file contains. And a compromised or malicious site could in principle ship code that uploads your data — which is why verifying in the Network tab beats trusting a badge, and why the claim deserves scrutiny rather than faith.
Try it yourself
Edit, compress, merge, sign and OCR your PDFs — free, and nothing is uploaded.
Open the editor →