=Calculator Hub

Aspect Ratio Calculator

Enter a width and height to reduce them to a simplified aspect ratio (like 16:9 or 4:3) and a decimal ratio, or switch to resize mode to work out the matching height for a new width without stretching or squashing the image.

Simplified ratio16:9
Decimal ratio (width ÷ height)1.7778

How this calculation works

In ratio mode, the calculator finds the greatest common divisor (GCD) of the width and height and divides both by it, the same way you'd simplify a fraction. 1920 × 1080 shares a GCD of 120, so dividing both sides gives 16:9. The decimal ratio is simply width ÷ height, which is useful for comparing ratios that don't reduce to tidy whole numbers.

In resize mode, the calculator keeps the original width-to-height relationship fixed and solves for the missing side: new height = original height × (new width ÷ original width). Because the ratio between width and height never changes, the resized image or video keeps its original proportions and never looks stretched or squashed.

Both modes work in any consistent unit — pixels for screens and images, or centimetres and inches for print — as long as width and height use the same unit.

Worked example

A 1920 × 1080 photo simplifies to a 16:9 ratio (decimal 1.7778). If you need a copy that's 1280 px wide, the matching height is 1080 × (1280 ÷ 1920) = 720 px — giving a 1280 × 720 image that is still exactly 16:9, with no distortion.

Common aspect ratios

These are the ratios you'll run into most often for screens, photos, and video:

RatioDecimalTypical use
1:11.0000Square — Instagram posts, album covers, profile photos
4:31.3333Classic TV, older monitors, standard photo prints
3:21.5000DSLR and mirrorless camera sensors, 4x6 prints
16:101.6000Some laptop and desktop monitors
16:91.7778HD/4K video, widescreen TV, most modern monitors
21:92.3333Ultrawide monitors, cinematic/anamorphic video
9:160.5625Vertical video — Stories, Reels, Shorts

Why keep the same aspect ratio when resizing

If you change width and height independently, the image or video stretches or squashes — circles become ovals and faces look distorted. Keeping the width-to-height ratio constant while resizing (scaling both sides by the same factor) preserves the original proportions exactly, which is why design tools and video editors usually lock the aspect ratio by default and let you drag just one handle.

Letterboxing and pillarboxing

Using ratios in CSS and design tools

Modern CSS supports an aspect-ratio property (e.g. aspect-ratio: 16 / 9) that keeps an element's proportions fixed as its container resizes, which is useful for responsive video embeds and image placeholders that shouldn't cause layout shift while loading. Design tools like Figma and Photoshop also let you lock a ratio when drawing or scaling a frame, using the same width-to-height relationship this calculator computes.

Frequently asked questions

How do I calculate aspect ratio from pixel dimensions?
Divide both the width and height by their greatest common divisor. For 1920 × 1080, the GCD is 120, so 1920 ÷ 120 = 16 and 1080 ÷ 120 = 9, giving 16:9. This calculator does that division automatically.
How do I resize an image without distorting it?
Pick one dimension you want to change (usually width), then scale the other dimension by the same factor: new height = original height × (new width ÷ original width). Switch this calculator to resize mode and enter your target width to get the exact height to use.
What's the difference between 16:9 and 16:10?
16:9 (decimal 1.778) is the standard for HD and 4K video, TVs, and most modern monitors. 16:10 (decimal 1.6) is slightly taller and common on some laptop screens and older monitors — the two ratios are close but not interchangeable without cropping or letterboxing.
Why do some ratios not simplify to small numbers?
If the width and height share no common factor other than 1 (they're coprime), the ratio stays as large numbers — for example 1366 × 768 simplifies only to 683:384. In these cases the decimal ratio (1.7786) is more practical to compare against standard ratios like 16:9 (1.7778).
What are the most common screen and video ratios?
16:9 (widescreen HD/4K video and monitors), 4:3 (older TVs and classic photos), 21:9 (ultrawide monitors and cinematic video), 1:1 (square, common on social media), and 9:16 (vertical video for Stories and Reels) cover the vast majority of everyday content.
Does this calculator store my image dimensions?
No. All calculations run locally in your browser and nothing you enter is uploaded, logged, or saved anywhere.
What is letterboxing and pillarboxing?
Letterboxing adds black bars above and below video to preserve its original ratio when shown on a taller screen (e.g. widescreen film on a 4:3 TV). Pillarboxing adds bars on the sides for the opposite case (e.g. 4:3 video on a 16:9 screen). Both exist because forcing content into a different ratio without bars would stretch or crop it.
This tool is provided for general information only. Verify important figures independently. · Last reviewed: August 25, 2026