Developer & Utility Image Tools 2026
Format converters, metadata strippers, favicon generators, and compression tools — all running in the browser via Canvas API and Web APIs. No file uploads, no server processing, no account required. Your files stay on your machine.
Coming soon
HEIC to JPG Converter
Convert iPhone HEIC photos to JPG in bulk — all processing in your browser.
Favicon Generator
Generate all favicon sizes (16, 32, 48, 180, 192, 512px) from one image.
Remove White Background (Transparent PNG)
Remove white or light backgrounds and save as transparent PNG.
Image to Base64 Encoder
Convert images to Base64 data URIs for embedding in HTML, CSS, or JSON.
WebP to JPG Converter
Convert WebP images to JPG/PNG in bulk — no uploads, no ads.
JPG/PNG to WebP Converter
Convert JPG or PNG to WebP with quality slider. See file size reduction.
Bulk Image Resizer
Resize up to 20 images at once to custom dimensions, download as ZIP.
App Store Screenshot Resizer
Generate all required iPhone, iPad, and Android screenshot sizes at once.
Why client-side matters for developer tools
Most online converters upload your file to a server, process it, and stream it back. That introduces latency, a privacy tradeoff (especially for screenshots of internal dashboards or API keys visible in images), and a dependency on someone else's uptime. Everything here runs in your browser tab using the Canvas API, FileReader, and where needed, WebAssembly. Close the tab, the file is gone.
The HEIC converter, for example, uses heic2any — a WASM-based library that runs entirely client-side. Bulk resizing uses a canvas loop and packages output as a ZIP via JSZip, again in the browser. No API calls leave your machine.
Frequently Asked Questions
Image format comparison — when to use what
| Format | Best for | Transparency | Typical size vs JPG |
|---|---|---|---|
| JPG / JPEG | Photos, government forms | No | Baseline |
| PNG | Screenshots, logos, UI | Yes | 2–5× larger |
| WebP | Web images, thumbnails | Yes | 25–35% smaller |
| HEIC | iPhone photos (storage) | No | 40–50% smaller than JPG |
| SVG | Icons, logos (vector) | Yes | Scales to any size |
| ICO / Favicon | Browser tab icons | Yes | Multi-size container |