Skip to content

Image Toolkit

Compress, resize, crop, and convert images locally, plus QR generation and safe SVG preview—no uploads.

Overview

Image Toolkit gathers the browser-based steps that prepare a picture for the web: shrink the file, fit it to a layout, crop for composition, convert to the format you actually serve, and sanitise SVG before inlining it. Processing uses Canvas and Web Worker APIs with explicit size limits, so large photos fail loudly instead of freezing a phone.

Recommended tools

Why these tools

Most image chores are a short pipeline rather than a single action. Cropping decides the subject, resizing decides the pixel budget, conversion decides the delivery format, and compression trims what remains—doing them in that order preserves the most quality per byte.

Related articles

Frequently asked questions

In what order should I use these tools?
Crop first so you only keep the region you want, then resize to the largest dimension you actually display, then compress or convert. Resizing before cropping throws away detail you paid for.
Do these image tools upload my files?
No. Compression, resizing, cropping, conversion, QR generation, and SVG cleanup are designed to run in your browser with Canvas and related APIs.
Which output format should I choose?
WebP is usually smallest for photographs on the web, JPEG is the safest download format, and PNG is right for screenshots, diagrams, or anything needing transparency.
Why does a large image fail to load?
Raster tools enforce file size and megapixel caps to protect mobile memory. The picker hint shows the limit—resize the source in another app if it exceeds it.
Is previewing an untrusted SVG safe?
SVG Viewer strips scripts, event handlers, and dangerous URLs before rendering. Still review sanitised markup before inlining it into your own pages.