Home / Tools / Image Tools
๐Ÿ–ผ๏ธ

Image Tools

Resize, crop, compress and convert images in-browser.

About image tools

Image tools for the everyday problems: a photo too large to email, a logo that needs a transparent background converted to the right format, a screenshot that has to fit an exact pixel size for an upload form, or a set of images that need to become a single PDF.

Everything here processes in your browser using the Canvas API, which has a consequence worth understanding. Your images are never uploaded, so private photos, ID documents and unreleased design work stay on your device โ€” but processing speed depends on your own hardware, and a very large batch on an old phone will be slower than a server-side equivalent. For the file sizes most people work with, the difference is imperceptible.

Choosing a format matters more than most people expect. Use JPEG for photographs, where its lossy compression is nearly invisible and the file savings are large. Use PNG when you need transparency or crisp edges โ€” logos, screenshots, anything with text or flat colour, where JPEG artefacts show badly. Use WebP when your target is the web and you control the audience: it is typically 25-35% smaller than an equivalent JPEG at matching quality, with support in every current browser. Converting a JPEG to PNG will not restore quality already lost; compression is one-directional.

Frequently asked questions

Are my images uploaded to a server?

No. Resizing, cropping, compression and conversion all happen in your browser via the Canvas API. The file is read from disk into memory on your own machine and never transmitted, which is why these tools also work with the network disconnected.

Should I use JPEG, PNG or WebP?

JPEG for photographs. PNG when you need transparency or sharp edges such as logos, screenshots and text. WebP for the web, where it is usually 25-35% smaller than JPEG at the same visual quality. If a file must open in old or unusual software, JPEG and PNG are the safest choices.

Why did compressing my image barely reduce the file size?

It was probably already compressed. Running JPEG compression a second time removes little additional data while degrading quality further, because the information that compresses easily has already been discarded. Compressing repeatedly makes an image progressively worse without making it meaningfully smaller.

Can I get quality back after compressing?

No. Lossy compression permanently discards image data, so converting back to a lossless format preserves the degraded version rather than recovering the original. Always keep your originals and compress copies.