<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: swathik</title>
    <description>The latest articles on DEV Community by swathik (@swathikt_d6870eb8d).</description>
    <link>https://dev.to/swathikt_d6870eb8d</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3918219%2F0552f3f7-092f-4e2d-aaad-261d34275883.jpeg</url>
      <title>DEV Community: swathik</title>
      <link>https://dev.to/swathikt_d6870eb8d</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/swathikt_d6870eb8d"/>
    <language>en</language>
    <item>
      <title>Why I'm building free PDF and image tools that never touch a server</title>
      <dc:creator>swathik</dc:creator>
      <pubDate>Fri, 08 May 2026 20:30:29 +0000</pubDate>
      <link>https://dev.to/swathikt_d6870eb8d/why-im-building-free-pdf-and-image-tools-that-never-touch-a-server-21i5</link>
      <guid>https://dev.to/swathikt_d6870eb8d/why-im-building-free-pdf-and-image-tools-that-never-touch-a-server-21i5</guid>
      <description>&lt;p&gt;Last month, I watched someone at a café upload their national ID(Aadhaar) to an online PDF tool.&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

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

&lt;p&gt;&lt;strong&gt;The documents we trust to "free" online tools&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Think about what you've uploaded to online tools in the last year:&lt;/p&gt;

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

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;For casual documents, maybe that's fine. For everything listed above? It shouldn't be acceptable.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What 2025 browsers can actually do&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;This is architecturally different from tools that promise to "delete files after 1 hour." I can't delete what I never had.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I'm building&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://www.pdfandimagetools.com" rel="noopener noreferrer"&gt;pdfandimagetools.com&lt;/a&gt; is a browser-native productivity platform. Every tool processes files locally. Nothing is uploaded. No account required. No limits. No watermarks.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;PDF tools&lt;/strong&gt; — 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.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Image tools&lt;/strong&gt; — 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.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Identity document tools&lt;/strong&gt; — 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.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The honest tradeoff&lt;/strong&gt;&lt;br&gt;
Browser-side AI has one real cost: the first load. BiRefNet's lite model is around 150MB — a real download on first use.&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The stack&lt;/strong&gt;&lt;br&gt;
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.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why this matters&lt;/strong&gt;&lt;br&gt;
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.&lt;/p&gt;

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




&lt;p&gt;The site is launching soon at &lt;strong&gt;&lt;a href="https://www.pdfandimagetools.com" rel="noopener noreferrer"&gt;pdfandimagetools.com&lt;/a&gt;&lt;/strong&gt; — get notified and be the first to know when it's live.&lt;/p&gt;

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

&lt;p&gt;If privacy-first tooling is something you care about, I'd love your thoughts in the comments below.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Building in public. No VC funding. No data collection. No compromises on privacy.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>webdev</category>
      <category>privacy</category>
      <category>nextjs</category>
    </item>
  </channel>
</rss>
