Image Editor
Resize an image
Set an exact width and height, or scale by percentage. The aspect ratio stays locked unless you unlock it.
- Free, no signup
- No upload — runs on your device
- No watermark
- Unlimited use
Resize Image
Processed locallyJPG, PNG, WebP, GIF, AVIF
Downscaling in one step is what makes resized images look bad
The naive way to shrink a 4000-pixel-wide photo to 400 pixels is to draw it once at the target size. The browser samples roughly one source pixel per destination pixel and discards the other ninety-nine, which produces aliasing: jagged diagonals, moiré on fine patterns, and text that turns to mush.
This tool halves the image repeatedly until it is within 2× of the target, then does the final step. Each halving averages four pixels into one, so information from the whole source contributes to the result. It is slower by microseconds and dramatically sharper — particularly on screenshots, logos and anything with high-frequency detail.
Upscaling has no such trick. Enlarging beyond the original dimensions invents pixels by interpolation. It will always look softer than the original, and no browser tool changes that.
How it works
- Drop in an image
- Enter a width or height, or pick a percentage
- Click Resize and download