How to Resize Images and Video Proportionally Without Distortion

Why Distortion Happens

Distortion happens when width and height are scaled by different factors — for example, setting a fixed 1200×800 output for an image that was originally 1920×1080. The result stretches unevenly, making circles look like ovals and faces look subtly wrong. Preventing this is simple math, and it’s exactly what the aspect ratio calculator’s “Resize Proportionally” mode automates.

The Proportional Resize Formula

New Height = New Width × (Original Height ÷ Original Width)

or, solving the other direction:

New Width = New Height × (Original Width ÷ Original Height)

Only one of the two new dimensions needs to be specified — the formula calculates the other one to match the original ratio exactly.

Worked Example

Original: 1920×1080 (16:9). Target: resize to a 1280-pixel width.

New Height = 1280 × (1080 ÷ 1920) = 1280 × 0.5625 = 720

Result: 1280×720 — same 16:9 ratio, scaled down proportionally. Using any height other than 720 for this width would distort the image.

Step-by-Step Process

Step 1 — Note your original dimensions. Check the source file’s exact width and height, not an assumed or rounded value.

Step 2 — Decide which dimension you’re constrained by. Often it’s width (a content width limit on a website) or height (a fixed video player frame) — whichever the platform or layout dictates.

Step 3 — Calculate the matching dimension using the formula above, or let the aspect ratio calculator do it directly.

Step 4 — Round sensibly if needed. Most image and video tools require whole-number pixel dimensions — round to the nearest whole pixel; a fraction of a pixel doesn’t exist in a rendered image.

When to Crop Instead of Resize

Proportional resizing only works when you’re free to choose the output dimensions. If a platform requires an exact fixed size that doesn’t match your source ratio (say, a 1:1 profile picture from a 16:9 photo), proportional resizing alone can’t hit that target — you need to crop instead, which trims part of the image to fit the required ratio. See the ratio glossary for the distinction between cropping and letterboxing, the two main strategies for fitting content into a mismatched target ratio.

Batch-Resizing Multiple Assets

If you’re resizing several images or video exports for the same target platform, calculate the ratio once using the aspect ratio calculator, then apply that same width-to-height relationship consistently across every asset — this keeps your entire set uniformly proportioned rather than risking a distorted resize on any individual file. See common video and photo aspect ratios by platform for the target ratios major platforms expect.

Checking Your Work

After resizing, a quick sanity check: divide the new width by the new height and compare it to the original width divided by original height — they should match (within rounding). If they don’t, the resize wasn’t proportional. See common aspect ratio mistakes for the errors that most often cause this kind of drift.

References & Sources

  1. [1] YouTube Help — Recommended Upload Encoding Settings (opens in new tab)
  2. [2] Meta Business Help Center — Best Practices for Aspect Ratios Across Placements (opens in new tab)