Image Dimension Scaler

Resize image dimensions by percent or target size, ratio locked.

Ad placeholder (leaderboard)
Enjoying the tools? Go Pro for £4.99 (one-time) and remove all ads — forever, on this device. Remove ads — £4.99

Image dimension scaler

Plan a proportional resize without ever stretching an image. This is a planning tool for designers and developers who need the exact pixel width and height before exporting from an editor, building a responsive srcset, or configuring a CDN transform.

How it works

First it computes the original aspect ratio as ratio = width ÷ height. Then, depending on the mode you choose:

  • Percentage: both sides are multiplied by the factor, e.g. outW = round(width × percent/100) and the same for height.
  • Target width: you set the width; height is solved as round(width ÷ ratio).
  • Target height: you set the height; width is solved as round(height × ratio).

Each result is rounded to a whole pixel, so the ratio is preserved to within a sub-pixel.

Example

Starting from a 1920×1080 image (16:9 ratio):

ModeInputResult
Percentage50%960 × 540
Target width12801280 × 720
Target height360640 × 360

Everything is calculated in your browser; no image is uploaded.

Ad placeholder (rectangle)