Micro Tool Yard logo
Tools

Drag & drop images here

Resize by exact dimensions or percentage — nothing leaves your device.

Ad Slot

How it works

  1. Drop your images

    One file or a batch — nothing is uploaded anywhere.

  2. Choose exact size or a percentage

    Type a target width/height with aspect-ratio lock, or scale by percentage.

  3. Preview the output size

    See the exact pixel dimensions before committing.

  4. Resize and download

    Download each file, or grab the whole batch as one zip.

Resize Image scales an image to a new pixel size entirely in your browser, using the Canvas API to redraw the decoded image at the target dimensions before re-encoding it in its original format. No file is ever uploaded to do this.

Two resize modes cover the common cases: exact dimensions, where you type a target width and/or height (with an aspect-ratio lock so the image never looks stretched unless you explicitly unlock it), and percentage scaling, which is often faster when you just want "half size" or "twice as big" without doing the pixel math yourself.

When resizing a batch of images together, each file is scaled from its own original dimensions rather than forced to one uniform output size, so percentage mode in particular stays correct across a batch of differently-sized photos.

It's worth understanding what resizing can and can't do to image quality. Shrinking an image is generally safe — the Canvas API's image smoothing averages nearby pixels down into fewer output pixels, which is exactly how downscaling is supposed to work and rarely produces visible artifacts. Enlarging an image is a different story: there's no real detail to recover that wasn't in the original file, so the browser is left interpolating between existing pixels to fill in the extra space. The result is a larger file that looks noticeably softer than a photo genuinely captured at that resolution — useful when you need a specific pixel size for a form field or template, but not a substitute for a higher-resolution source image.

Because resizing only changes dimensions and re-encodes at the same quality settings as the source format, file size scales roughly with pixel count — halving both width and height cuts total pixels (and typically file size) to roughly a quarter of the original. If your actual goal is a smaller file rather than smaller dimensions specifically, the Compress Image tool targets file size directly without changing the image's dimensions at all.


FAQ

Will resizing distort my image?
Only if you unlock aspect ratio and set a width/height combination that doesn't match the original proportions. With aspect ratio locked (the default), changing one dimension automatically adjusts the other to keep the image undistorted.
Can I make an image bigger, not just smaller?
Yes — percentage mode accepts values above 100%. Keep in mind that enlarging a raster image doesn't add real detail; it will look softer than a photo actually taken at that resolution.
Does resizing change the output format?
No — the resized file keeps the same format as the file you uploaded (a PNG stays a PNG, a JPG stays a JPG).
Is my image uploaded anywhere?
No. Resizing happens entirely in your browser via a background worker — no file is ever uploaded, and no network request is made.