Kit-Bin
Donate

← All guides

Resizing Without Distortion

A stretched-looking photo, faces slightly too wide, circles turned into ovals, almost always comes from one specific mistake: setting a new width and a new height that don't match the original image's proportions.

What aspect ratio actually is

Aspect ratio is just the relationship between an image's width and height, expressed as a ratio. A 4000×3000 photo has a 4:3 ratio, meaning for every 4 units of width there are 3 units of height. Any resize that keeps that same proportion (2000×1500, 800×600, 400×300) looks like a clean scaled-down copy. Any resize that doesn't (say, 2000×1000) squashes the image vertically to fit, because the pixels have to spread across a shape that doesn't match the original.

The math

To resize proportionally, pick one dimension and calculate the other:new height = original height × (new width ÷ original width). For the 4000×3000 example, resizing to a width of 1200px gives a height of 3000 × (1200 ÷ 4000) = 900px, so 1200×900, not 1200×anything-else.

Why some tools distort by default

Tools that expose separate width and height fields without linking them let you type in any combination, including ones that don't match the source ratio. The tool doesn't guess your intent, it just applies exactly what you entered. That's the setting to watch for: if a resize tool locks the ratio and only lets you change one dimension, distortion isn't possible by construction.

Where this site's Resize Image tool fits

Resize Image on this site takes a target width and scales the height to match automatically, so the aspect ratio can't be broken through the tool itself. It doesn't currently expose an independent height field or a percentage-based resize.

Upscaling is a separate issue

Keeping the correct ratio prevents distortion, but it doesn't add detail. Scaling a small image up to a larger size just stretches the existing pixels across more space and can't recover detail that was never captured. See compression vs resizing for more on what resizing can and can't do.

Further reading

Written by the Kit-Bin teamPublished Last reviewed Spotted an error? Tell us