惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 三生石上(FineUI控件)
雷峰网
雷峰网
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
博客园 - 叶小钗
The Cloudflare Blog
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
小众软件
小众软件
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
宝玉的分享
宝玉的分享

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why I'm building free PDF and image tools that never touc...
swathik · 2026-05-09 · via DEV Community

Last month, I watched someone at a café upload their national ID(Aadhaar) to an online PDF tool.

They needed to crop it, compress it, and send it somewhere. So they did what everyone does — Googled "free PDF tool," uploaded the file, downloaded the result, closed the tab.

Their government ID — name, address, date of birth, ID number — had just passed through a server they knew nothing about. Stored for how long? Accessed by whom? Under which country's data laws? They had no idea. Neither did the tool.

That moment stuck with me. Because I realised: this isn't rare. This is what hundreds of millions of people do every single day.

The documents we trust to "free" online tools

Think about what you've uploaded to online tools in the last year:

  • Bank statements (to convert to Excel or CSV)
  • Salary slips and tax documents (to compress or convert)
  • Passport and government ID scans (to crop, resize, or convert)
  • Product photos for e-commerce (to remove backgrounds)
  • Client contracts and agreements (to merge or sign)
  • Medical reports and prescriptions (to share with doctors)

Every one of those files, on most popular tools, travels to a server you don't control. iLovePDF, Smallpdf, and nearly every free tool you've used works this way — your file goes to their cloud, gets processed, and is "deleted after a short time." Their words, not a guarantee.

For casual documents, maybe that's fine. For everything listed above? It shouldn't be acceptable.

What 2025 browsers can actually do

Here's what changed: modern browsers are no longer just document viewers. With WebAssembly, ONNX Runtime Web, and GPU acceleration, a browser tab in 2025 can run the same AI models and processing pipelines that cloud servers ran three years ago — locally, on your device, with no network request.

That means background removal, PDF processing, document conversion, image editing — all of it can happen entirely inside your browser. Your file never leaves your device. There's nothing to breach on my end because I never receive your file in the first place.

This is architecturally different from tools that promise to "delete files after 1 hour." I can't delete what I never had.

What I'm building
pdfandimagetools.com is a browser-native productivity platform. Every tool processes files locally. Nothing is uploaded. No account required. No limits. No watermarks.

PDF tools — merge, split, compress, and convert documents. Convert bank statements to Excel or CSV. Extract text from scanned documents. All without your statement ever touching a server.

Image tools — remove backgrounds using BiRefNet (a state-of-the-art MIT-licensed AI model running entirely in your browser). Convert between image formats. Compress photos. Replace backgrounds with solid colours, gradients, or your own images.

Identity document tools — resize and crop passport photos to exact specifications. Convert ID scans to the right format and file size for government portals and visa applications. Your passport, your national ID, your documents — processed locally and gone the moment you close the tab.

The honest tradeoff
Browser-side AI has one real cost: the first load. BiRefNet's lite model is around 150MB — a real download on first use.

I handle this with progressive loading. The page and UI render instantly. A progress bar shows the model loading in the background. After that first visit, the model saves directly to your own device — not to any server — so every return visit loads in under two seconds. It works like any app on your phone that remembers its data between sessions. Yours, on your device, under your control.

For PDF tools, there's no meaningful tradeoff. Browser-based PDF processing is often faster than cloud tools because there's no upload and download round trip.

The stack
Next.js 15, TypeScript, Tailwind CSS, Hugging Face Transformers.js, ONNX Runtime Web, pdf-lib, and WebAssembly. Inference runs in Web Workers so the UI never freezes. WebGPU acceleration is used where the browser supports it.

Why this matters
Every tool that currently uploads your files to someone else's server should have a free, browser-native alternative that doesn't. That's the project.

If you've ever uploaded a sensitive document to one of these tools and had that brief moment of — wait, where did that actually go? — this is being built for you.


The site is launching soon at pdfandimagetools.com — get notified and be the first to know when it's live.

And if you're interested in following the build — the technical decisions, the mistakes, the progress — follow me here on Dev.to. I'll be writing about the architecture, the challenges, and everything I learn along the way.

If privacy-first tooling is something you care about, I'd love your thoughts in the comments below.


Building in public. No VC funding. No data collection. No compromises on privacy.