브라우저에서 완전히 실행되는 프라이버시 우선 이미지 도구를 만든 이유

작성자

카테고리:

← 피드로
DEV Community · Arhan Ahmad · 2026-07-07 개발(SW)

Arhan Ahmad

Every time you upload a photo to an online image tool, you’re sending it to someone’s server. Maybe you’re okay with that. But what if the image contains sensitive information?

A screenshot of a private conversation. A photo with GPS coordinates embedded in the metadata. A design mockup for a product that hasn’t launched yet.

This is why I built ToolBox Image — a free image toolkit where every single tool runs 100% in your browser using Canvas API and WebAssembly. Nothing is uploaded. Nothing is stored. Nothing leaves your device.

What I built

22 tools covering everything from basic compression to advanced features:

  • Compression: JPEG, PNG, WebP, AVIF, GIF with target-size mode
  • Conversion: Between any format, including HEIC
  • Editing: Resize, crop, rotate, sharpen, denoise, blur
  • Analysis: EXIF viewer, color picker, dominant color extraction, format viewer
  • Privacy: Metadata stripper, image redactor (pixelate sensitive areas)
  • Creation: Passport photos, circle crops, watermarks, SVG optimization

Why it matters

Most image tools follow the same pattern: upload → process on server → download. That means:

  1. Your images sit on someone’s server (for who knows how long)
  2. They can be accessed by third parties
  3. Large files take minutes to upload
  4. There’s a file size limit on most free tools

Browser-based processing solves all of these. The code runs locally using WebAssembly. The only thing you download is the optimized result.

The tech

Built with Astro 7, Tailwind CSS v4, and vanilla JavaScript for processing. Canvas API handles decode, encode, resize, and filters. Web Workers enable parallel processing for batch jobs (up to 200 images at once).

No backend servers. No databases. No user accounts.

The entire site is deployed on Cloudflare Pages and costs essentially nothing to run because there’s no server-side processing.

Try it

If you work with images regularly and value privacy, give it a try:

https://toolboximage.com

All tools are free. No sign-up. No limits. No tracking.

I’d love to hear what you think — especially if there’s a tool you’d like to see added.

원문에서 계속 ↗

코멘트

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다