Contracts, resumes, medical reports, financial statements — these are some of the most common things we carry around as PDFs, and also exactly the kind of thing we least want someone else to see. When you search for an "online PDF editor," it's worth asking one more question first: does this site actually send my file to its own server?
How most online PDF tools actually work
The typical flow is: you upload the file → a server receives and processes it → it generates a result → you download it back. Somewhere in that process, your file genuinely leaves your device and lands on someone else's server. Even if their privacy policy says "not stored" or "auto-deleted within 24 hours," you can only take their word for it — you can't verify it. Transmission, temporary storage, and logging are all places a copy could linger, and any server can be breached.
3 checks worth doing before you upload
- Read the privacy policy, but don't stop there. It should explicitly state whether files are uploaded, whether they're retained, and for how long. Vague wording — or no policy at all — is a red flag.
- Test it offline. Load the page, then disconnect from the internet and try opening and editing a file. If editing still works, processing is happening on your own machine. If it errors out or hangs, it depends on a server.
- Open your browser's developer tools Network panel. Press F12 (or right-click → Inspect), switch to the Network tab, then open and edit a file while watching for any request that sends your PDF's content out. This is the most direct, self-verifiable check.
How local-processing tools work under the hood
LocalPDF is an example you can verify with all three checks above: it parses and renders PDFs using your browser's own JavaScript engine (technically, pdf.js), and rebuilds the file entirely in your browser's memory when you export (using pdf-lib) — never sending your file's content to any server. Close the tab, and the data is simply gone.
Don't take our word for it — open developer tools and check for yourself. We have nothing to hide.
Open LocalPDF →