Resize Image Online
Set the exact pixel dimensions you need. Lock the aspect ratio to keep the picture undistorted, or pick a fit mode to force a specific frame. High-quality resampling, done locally.
Drop your image here
or
Choose ImageYou can also paste an image with Ctrl+V
Images are processed on your device and never uploaded.
• •
Runs on your device — nothing is uploaded.
Working…
0%
- Original
- Result
- Saved
- Quality
How to resize an image
- Choose your image — the current dimensions appear immediately.
- Type a new width or height. With the lock enabled, the other value follows.
- Or tap a preset: 25%, 50%, 75%, 600×600, 1080×1080, 1920×1080.
- Press Resize and download.
Fit, fill and stretch
When your target dimensions do not match the image's aspect ratio, something has to give. The three modes decide what:
- Fit — the whole image fits inside the box. Nothing is cropped; the result may be smaller than the box in one direction. Best when you must not lose any content.
- Fill — the image covers the box completely and the overflow is cropped from the edges. Best for thumbnails and square avatars, where a consistent frame matters more than the corners.
- Stretch — the image is squashed to the exact box. It will look wrong unless the ratios nearly match. Use only when you know you need it.
Why resampling quality matters
Downscaling is where cheap tools give themselves away. Throwing an 8000 px image
into a single drawImage call at 800 px makes the browser sample roughly
one pixel in a hundred, which produces aliasing on fine detail — moiré on fabric,
jagged edges on text, sparkle on foliage.
This tool steps the image down in halves and finishes with a high-quality Lanczos pass, so every source pixel contributes to the result. Aspect ratio, transparency and EXIF orientation are preserved throughout.
Resize or compress?
They solve different problems and are often confused:
- Resizing changes how many pixels exist. It is the only way to make a 4000 px image display correctly in a 400 px slot.
- Compressing changes how many bytes those pixels take up, leaving the dimensions alone.
For web images you usually want both: resize to the largest size the layout actually shows, then compress. Doing it in that order gives a much better result than compressing a huge image.
Frequently asked questions
Are my images uploaded to your server?
No. The image is decoded, processed and re-encoded by your own browser using the Canvas and Web Worker APIs. There is no upload endpoint for this tool — open your browser's network panel while you use it and you will see no request carrying image data.
Can I make an image larger?
Yes, up to 4× the original in each direction, but upscaling cannot invent detail that was never captured. Expect a softer picture. For big enlargements, going back to the original file is always better.
Will resizing keep transparency?
Yes, provided the output format supports it. Keep PNG or WebP as the output; choosing JPG will ask you which background colour should replace the transparent areas.
Does resizing change the file size?
Almost always, and dramatically — halving both dimensions removes three quarters of the pixels. The result panel shows the new file size alongside the new dimensions.
What happens to my file when I close the tab?
It is gone. The image only ever exists in your browser's memory as an object URL; closing or refreshing the page discards it. Nothing is written to our servers, and nothing is stored on your device unless you download the result.