Calculate Aspect Ratio Instantly

Enter width and height to find the simplified ratio

×
Resize while preserving ratio

Quick answer

Divide both dimensions by their GCD to get the simplified ratio. 1920×1080: GCD = 120 → 16:9. 2560×1440: GCD = 80 → 16:9. To resize: multiply the known dimension by the opposite side's ratio component.

Key takeaways
  • The GCD is the core operation - both dimensions divide by it to reach the simplest whole-number form. 1920 and 1080 share a GCD of 120, giving 16:9.
  • Same ratio means same shape. 3840×2160 and 640×360 look identical on the same screen - both are 16:9, just different sizes.
  • Resizing is strictly linear: doubling the width means doubling the height. Any scale factor works the same way.
  • Platforms have fixed requirements: 16:9 for YouTube, 9:16 for TikTok/Reels, 1:1 for Instagram grid, 4:5 for Instagram portrait feed.
  • The decimal ratio (W÷H) is a fast identity check: 1.778 = 16:9, 1.333 = 4:3, 1.000 = square.

How to use our width to height ratio calculator

Enter the width and height of any rectangle - a screen, image, video frame, canvas, or print size. The calculator returns the simplified aspect ratio, its decimal equivalent, and the height as a percentage of width. Use the resize section to find the corresponding dimension at any new size.

What is an aspect ratio?

An aspect ratio is the proportional relationship between the width and height of a rectangle, expressed as W:H. It describes the shape of the rectangle without specifying its size. Two rectangles with different dimensions but the same aspect ratio are geometrically similar - one is a scaled version of the other.

The ratio is always simplified to the smallest whole numbers by dividing both dimensions by their greatest common divisor (GCD). 1920:1080 simplifies to 16:9 because GCD(1920, 1080) = 120.

Aspect ratio explained to a beginner

Think of aspect ratio like the shape of a sandwich box - not its size, just its proportions. A box that is 16 cm wide and 9 cm tall has the same shape as a 1920-pixel-wide screen that is 1080 pixels tall. Scale it up or down and the shape stays identical. The ratio captures the shape, not the size.

To find the ratio, you need the GCD - the largest number that divides evenly into both dimensions. For 1920 and 1080, that number is 120. Divide: 1920÷120 = 16, 1080÷120 = 9. Result: 16:9. A quick shortcut: compute W÷H as a decimal. If it equals 1.778, the rectangle is 16:9 regardless of the exact pixel count. That single number tells you the shape instantly.

Dimension ratio formula and calculation

The aspect ratio formula uses the GCD to reduce to lowest terms:

$$\text{Aspect Ratio} = \frac{W}{\gcd(W,H)} : \frac{H}{\gcd(W,H)}$$

The decimal ratio (W ÷ H) expresses how many units wide the rectangle is per unit of height:

$$\text{Decimal ratio} = \frac{W}{H}$$

To resize while preserving the aspect ratio, scale the new dimension by the ratio of the sides:

$$H_{\text{new}} = W_{\text{new}} \times \frac{H}{W}$$

Common aspect ratios reference

A handful of ratios dominate modern screens and cameras. Knowing the decimal equivalent of each one lets you identify a ratio instantly - without calculating the GCD - just by dividing width by height.

The table below covers the ratios you'll encounter most often, along with their primary use cases and real-world resolutions.

RatioDecimalCommon useExample resolution
16:91.778HD/4K TV, YouTube, most monitors1920×1080, 3840×2160
16:101.600Widescreen laptops, older monitors1920×1200, 2560×1600
4:31.333Traditional TV, iPad, older screens1024×768, 2048×1536
1:11.000Instagram square posts, profile photos1080×1080
21:92.333Ultrawide monitors, cinema2560×1080, 3440×1440
3:21.500DSLR/mirrorless cameras, prints3000×2000, 6000×4000
5:41.250Medium format, some monitors1280×1024
9:160.563Mobile video, TikTok, Instagram Reels1080×1920
2:30.667Portrait photography prints4000×6000

When I'm checking whether an image will fit a specific screen, I skip the GCD step entirely and just calculate the decimal ratio (W÷H). If it matches the target's decimal - 1.778 for 16:9, 1.333 for 4:3 - the image fits without cropping.

The simplified W:H notation is more readable, but the decimal is faster for quick comparisons when you're working through a batch of assets.

Resizing with aspect ratio

When resizing an image or video frame, one dimension determines the other. Changing width while preserving a 16:9 ratio:

New widthCalculated height (16:9)Common name
384021604K UHD
25601440QHD / 2K
19201080Full HD
1280720HD
854480SD
640360360p

The relationship is linear: double the width and the height doubles too. This means you can scale by any factor and the ratio remains constant.

Aspect ratio applications by domain

DomainTypical ratioWhy it matters
Web design16:9Hero images, video embeds, responsive layouts
Social media1:1, 4:5, 9:16Platform-specific crop requirements
Photography3:2Standard DSLR sensor format for prints
Film / cinema2.39:1 (widescreen)Anamorphic lens format
Print design1:√2 (A4 paper)ISO paper series - scales without distortion
UI/UX designCustomModal dialogs, card components, thumbnails

In my experience, the place where aspect ratio errors cause the most pain is social media uploads. TikTok and Instagram Reels demand 9:16, but most cameras default to 16:9.

Uploading 16:9 footage to a 9:16 slot doesn't just letterbox it - the platform auto-crops to center, often cutting off the subject's head or feet. Checking the target ratio before you shoot saves far more time than re-editing after the fact.

Frequently asked questions about aspect ratio

What is an aspect ratio?

The proportional width-to-height relationship of a rectangle, simplified to the lowest whole-number form using the GCD. Example: 1920:1080 = 16:9.

How do you calculate an aspect ratio?

Find GCD(width, height), then divide both by it. GCD(1920, 1080) = 120; 1920÷120 = 16, 1080÷120 = 9 → 16:9.

How do you resize an image while keeping the aspect ratio?

Multiply the new width by H/W (for height), or the new height by W/H (for width). For 16:9 at width 1280: height = 1280 × 9/16 = 720 px.

What is a 16:9 aspect ratio in pixels?

Any resolution where width ÷ height = 16 ÷ 9 ≈ 1.778. Common examples: 3840×2160, 2560×1440, 1920×1080, 1280×720.

Is 4:3 or 16:9 better?

Neither is inherently better - it depends on the use case. 16:9 matches modern screens and video; 4:3 suits older content, tablets, and certain print formats. The right ratio is the one that fits your output medium.

Test your knowledge

Quiz: how well do you know aspect ratios?

5 questions · ~2 min

1. What is the decimal ratio (W÷H) for a standard 16:9 aspect ratio?

16÷9 = 1.777..., conventionally rounded to 1.778. This is the quickest way to confirm a rectangle is 16:9 without calculating the GCD.

2. The GCD of 1920 and 1080 is used to simplify the ratio to 16:9. What is that GCD?

GCD(1920, 1080) = 120. Dividing: 1920÷120 = 16 and 1080÷120 = 9, giving the simplified ratio 16:9.

3. Using the 16:9 resize table on this page, what height corresponds to a new width of 1280 pixels?

1280 × (9/16) = 720. This is the standard HD resolution — the table confirms the width 1280 maps to height 720 in 16:9 format.

4. According to the applications table, which domain typically uses the 3:2 aspect ratio?

The applications table lists 3:2 under photography for DSLR and mirrorless cameras, with example resolutions like 6000×4000.

5. The page warns that uploading 16:9 footage to a 9:16 slot (TikTok, Reels) most commonly results in:

Platforms auto-crop to the center of the frame, which often cuts off the subject's head or feet. Letterboxing (black bars) only appears if the platform preserves the original ratio rather than cropping.

Key terms