UnitPlanet

Aspect Ratio Calculator

An aspect ratio describes the proportional relationship between a rectangle's width and height. 16:9 means for every 16 units of width there are exactly 9 units of height — whether those units are pixels, millimeters, or inches. Simplifying dimensions to a ratio uses the greatest common divisor (GCD); finding a missing dimension from a known ratio uses proportional scaling.

The formula

Simplify dimensions to ratio:
  GCD(width, height) = greatest common divisor
  ratio = (width / GCD) : (height / GCD)

  Example: 1920 × 1080
  GCD(1920, 1080) = 120
  ratio = (1920/120) : (1080/120) = 16:9

Find a missing dimension from a known ratio (W:H):
  Given width:  height = width × (H / W)
  Given height: width  = height × (W / H)

  Example: 16:9, width = 1200 px
  height = 1200 × (9/16) = 675 px

Practical examples

Example 1 — Thumbnail for a YouTube video. YouTube recommends 1280×720 thumbnails. Verify the ratio: GCD(1280, 720) = 80 → 1280/80 : 720/80 = 16:9. Correct.

Example 2 — Resize a 4:3 image to fit a 16:9 frame at 1920 px wide. You want to know the letterbox bars. 4:3 height at 1920px wide: 1920 × (3/4) = 1440 px. The 16:9 frame height: 1920 × (9/16) = 1080 px. Letterbox bar height: (1440 − 1080) / 2 = 180 px top and bottom.

Example 3 — A3 paper aspect ratio. A3 is 297 × 420 mm. GCD(297, 420) = 21 → 297/21 : 420/21 = roughly 1:√2 (the ISO 216 standard ratio). Scaled precisely, it displays as approximately 99:140.

Common mistakes

  • Reversing width and height. Aspect ratio is always width:height. A portrait phone display (1080×2340) has ratio 1080:2340 = 9:19.5, not 19.5:9. The first number is always the horizontal dimension.
  • Using pixels instead of reduced ratio when specifying constraints. CSS aspect-ratio: 16/9 is correct. CSS aspect-ratio: 1920/1080 also works, but is harder to read and non-portable. Always reduce to the simplest form.
  • Assuming 21:9 is exactly 21:9. Ultra-wide monitors vary: 2560×1080 = 64:27 (≈2.37:1), 3440×1440 = 43:18 (≈2.39:1), 3840×1600 = 12:5 (2.4:1). The "21:9" label is a marketing approximation, not a precise ratio.

International and regional variations

RatioDecimalCommon useTypical resolutions
4:31.333Standard TV (pre-HD), iPad, some monitors1024×768, 1600×1200
16:91.778HDTV, YouTube, most monitors, smartphones (landscape)1280×720, 1920×1080, 3840×2160
16:101.6Laptop displays, some professional monitors1920×1200, 2560×1600
21:9≈2.37Ultrawide monitors, cinema2560×1080, 3440×1440
1:11.0Instagram posts, profile pictures, square format1080×1080
9:160.5625Smartphone portrait, TikTok, Reels1080×1920
1:√2≈1:1.414ISO 216 paper (A4, A3, A5)

Simplify a ratio from dimensions

×
Simplified ratio

Find a missing dimension

Ratio::Quick set:
Height

Frequently Asked Questions

What does 16:9 mean?
16:9 means for every 16 units of width there are 9 units of height. It is the standard widescreen ratio used by HDTVs, YouTube, and most modern monitors. A 1920×1080 display is exactly 16:9.
How do I find the height for a 16:9 image at 1200px wide?
Height = width × (9/16) = 1200 × 0.5625 = 675 px. Use the 'Find a missing dimension' section: set ratio to 16:9, enter 1200 as the known width.
What is the aspect ratio of A4 paper?
A4 is 210 × 297 mm. Ratio = 210/297 ≈ 1:1.4142, or simplified: approximately 1:√2. ISO 216 paper sizes are designed so that halving a sheet preserves the same ratio.
What is the difference between 4:3 and 16:9?
4:3 (1.333:1) was the standard TV ratio before widescreen. 16:9 (1.778:1) is the modern widescreen standard. Displaying 4:3 content on a 16:9 screen requires letterboxing (black bars) or stretching.
Why is 21:9 used for ultra-wide monitors?
21:9 (2.333:1) matches the aspect ratio of anamorphic cinema lenses (~2.39:1). Ultra-wide monitors use it to display movies without horizontal black bars and to show wider fields of view in games.

Sources

  1. NIST SP 811 — Guide for the Use of the International System of Units[archived 2026-05-01]

Related Tools