Image resizer
Nothing is uploaded — the file is processed entirely in your browser.
Resize an image to exact dimensions or a percentage, in your browser.
How it works
Resizes an image to a width, a height or a percentage, optionally keeping the aspect ratio. The file never leaves your device — it is decoded, redrawn on a canvas and re-encoded locally, so there is no upload and no server copy.
Enlarging cannot add detail. Scaling a 400-pixel image to 1600 gives you four times the pixels and exactly the same information, interpolated to fill the gaps — which is why upscaled images look soft. Only downscaling is lossless in the sense that matters.
Downscaling in one large step causes aliasing, the jagged shimmer you see on fine detail and text. This tool steps down in halves when the reduction is large, which is what image editors do internally and what keeps edges clean.
Re-encoding a JPEG always loses a little quality even at maximum setting, because JPEG is lossy on every save. Where the source is a PNG and the output is a PNG, nothing is lost.
This tool runs entirely in your browser. Nothing you enter is sent to a server, logged or stored, and the page keeps working with the network disconnected.
Common questions
- Is my image uploaded anywhere?
- No. It is decoded and redrawn in your browser. Nothing is transmitted, and the page works offline once loaded.
- Why does my enlarged image look blurry?
- Because enlarging cannot create detail that was not captured. The extra pixels are interpolated from neighbours, which softens edges.
- Does resizing lose quality?
- Downscaling loses detail by definition. Re-encoding a JPEG also loses a little every time, since JPEG is lossy on every save — PNG to PNG does not.
Related pages
- Password generator Generate strong random passwords in your browser, with the entropy shown.
- Merge PDF files Combine several PDFs into one, in the order you choose.
- QR code generator Make a QR code for a link, text, WiFi network or contact details, and download it as SVG.
- Split and extract PDF pages Pull out a page range, split into single pages, or delete pages.
- Random number generator Random numbers in any range, plus dice, coin flips and a shuffled pick from a list.
- Random picker and team generator Pick a winner from a list, split into teams, or generate a random order.
- Image crop, rotate and flip Crop to an aspect ratio, rotate in 90° steps, or mirror an image.
- Lorem ipsum generator Generate placeholder text by paragraphs, sentences or words.
- Meta tag generator Generate title, description, canonical, Open Graph and Twitter Card tags.
- Printable graph paper Generate and print squared, dotted, isometric, hexagonal or lined paper.
Sources
- Calculated on this page — At One Place