Every online file converter you've used works the same way: you pick a file, the site uploads it to a server, the server converts it, and you download the result. It feels seamless because the upload bar is polished — but from a privacy standpoint, that upload is where all the risk lives.
Browser-based tools like Zro7 flip the model. The conversion code — an entire copy of FFmpeg, or DuckDB, or Tesseract — ships to your browser as WebAssembly and runs there. Your file never leaves your device. This post explains what that difference actually buys you.
What "upload to convert" really means
When you drop a PDF onto a cloud converter, four things happen that you can't see:
- The file leaves your network. It travels over the public internet to a data center you don't control.
- It's written to disk. Almost every converter buffers the upload to a temporary file before processing it, because streaming conversion is harder.
- It's held for the download. The output — and often the input — sits on the server until you fetch it, or until a cleanup job deletes it. "Deleted after 1 hour" means "not deleted for up to an hour."
- It's logged. Filenames, IP addresses, user agents, and file sizes end up in access logs and analytics tools, regardless of what the privacy policy says about "your file."
None of those steps are malicious. They're just how servers work. But if the file is a signed contract, a passport scan, a medical report, or your client's confidential deck, every one of those steps is a place where a mistake can leak it.
How a browser-based tool avoids all four
In a browser tool, the conversion code runs inside the same tab that's rendering this page. When you drag a file onto Compress PDF, the browser reads it with the File System Access API, hands the bytes to a WebAssembly module, and writes the result back to a Blob URL that turns into a download link. No network request carries the file's contents.
You can verify this yourself:
- Open the Zro7 tool you want to test.
- Open your browser's DevTools → Network tab.
- Turn on "Preserve log" and check "Disable cache."
- Run the tool on a real file.
- Look at every request. The only traffic should be the tool's own code and WebAssembly modules — nothing carrying your file's bytes out.
This is the same audit any security-minded team can run against Zro7. We built it so the answer is always the same: nothing leaves.
The three real-world advantages
1. Legal exposure drops to zero
If a file never leaves your device, no regulation about processing it applies to a third party — because there is no third party. GDPR, HIPAA, CCPA, SOC 2, and every enterprise DLP policy stops caring the moment the vendor doesn't touch the data. That's why in-browser tools are increasingly the default choice in law firms, hospitals, and finance teams.
2. There's no file size ceiling — only your machine's
Cloud converters cap free uploads (usually at 100 MB) because bandwidth costs money. In the browser, the only limit is your RAM. Zro7's Big CSV Viewer streams multi-gigabyte files through DuckDB-WASM without ever fully loading them. Try that on a free cloud tool.
3. It works on a plane
A tool that ran in the browser once will run again with the network off. That matters more than it sounds — journalists filing from conflict zones, auditors on-site with air-gapped networks, and anyone on a bad hotel Wi-Fi all benefit from tools that just… keep working.
When cloud tools are still the right answer
Browser tools aren't a religion. Cloud processing wins when:
- The workload is genuinely huge (rendering a 90-minute 4K video), and you'd rather rent a GPU than tie up your laptop.
- You need collaboration — multiple people editing the same PDF at once.
- The task requires a model too large to ship to the browser (a 70-billion-parameter LLM, for instance).
For everything else — merging PDFs, compressing images, trimming video, running SQL on a CSV, OCR on a scan — the browser is now the better tool. It's faster, private, and works offline. That's the case we're making with every tool we ship at Zro7.
Try it in ten seconds
Open Compress PDF in a new tab, disconnect your Wi-Fi, and drop a file. It'll still work. That's the whole pitch.
Zro7