Free Aspect Ratio Calculator

Calculate proportions, find missing dimensions, and simplify aspect ratios using physical resolutions

Aspect Ratio Calculator

Original Width
Original Height
Aspect Ratio

Aspect Ratio: 16:9

Ratio: 1.7778

Width ÷ Height = 1.7778

GCD Simplified: 16:9

Calculate New Dimensions:
New Width
New Height
Common Aspect Ratios:

Understanding Aspect Ratios in Digital Media

An aspect ratio is the proportional relationship between the width and height of a digital image, screen, or design container. Expressed as two numbers separated by a colon (such as 16:9), it indicates that for every unit of width, there is a corresponding proportion of height, regardless of the physical size or hardware resolution.

How to Calculate Aspect Ratio (The GCD Formula)

To simplify any custom display resolution (e.g., 1920×1080) into its base aspect ratio, find the **Greatest Common Divisor (GCD)** between the width and height, and then divide both values by that divisor:

Base Width = Original Width ÷ GCD(Width, Height)

Base Height = Original Height ÷ GCD(Width, Height)

For a standard Full HD monitor of 1920 × 1080 pixels, the Greatest Common Divisor is 120:

Width: 1920 ÷ 120 = 16
Height: 1080 ÷ 120 = 9
Resulting Aspect Ratio = 16:9

Standard Aspect Ratios Reference Table

A handy guide to the most common aspect ratios used across screens, social platforms, and cinema formats:

Ratio SpecDecimal FactorCommon ApplicationExample Resolutions
1:11.00Square (Instagram posts, profile avatars)1080 × 1080, 500 × 500
4:31.33Standard (Classic TV, iPad tablets, photography)1024 × 768, 1600 × 1200
16:91.78Widescreen (HD monitors, YouTube videos, presentation slides)1920 × 1080, 3840 × 2160
16:101.60Modern laptops (MacBook Pro standard, productivity screens)2560 × 1600, 1920 × 1200
21:92.33Ultrawide (Gaming monitors, cinematic formats)3440 × 1440, 2560 × 1080
9:160.56Portrait (Instagram Stories, TikTok videos, YouTube Shorts)1080 × 1920, 720 × 1280

Maintaining Proportions When Resizing

When scaling an element while keeping its exact aspect ratio intact, use these mathematical rules based on the original width ($W_1$) and height ($H_1$):

Calculating New Height: New Height = New Width ÷ (W₁ ÷ H₁)
Calculating New Width: New Width = New Height × (W₁ ÷ H₁)

In modern web stylesheets, the native CSS aspect-ratio property simplifies layout sizing automatically:

.responsive-card {
  width: 100%;
  aspect-ratio: 16 / 9;
}

Frequently Asked Questions (FAQs)

An Aspect Ratio Calculator helps you calculate, maintain, and convert aspect ratios between different dimensions. It's essential for responsive design, image resizing, and maintaining proportions.

Aspect Ratio is the proportional relationship between the width and height of an image or screen, expressed as two numbers separated by a colon (e.g., 16:9).

To calculate aspect ratio: 1) Find the Greatest Common Divisor (GCD) of width and height, 2) Divide both dimensions by the GCD. For example, 1920×1080 simplifies to 16:9 (GCD is 120).

Common aspect ratios include: 1:1 (square), 4:3 (standard), 16:9 (widescreen), 16:10 (WUXGA), 21:9 (ultrawide), 9:16 (portrait), and 4:5 (Instagram portrait).

Use the formula: New Height = New Width ÷ (Original Width ÷ Original Height). Or use CSS aspect-ratio property: aspect-ratio: 16/9.

Instagram: 1:1, 4:5, or 1.91:1; Instagram Stories: 9:16; Facebook: 1.91:1; Twitter: 2:1 or 16:9; YouTube: 16:9; LinkedIn: 1.91:1.

If you have width and ratio, Height = Width ÷ Ratio. If you have height and ratio, Width = Height × Ratio. Ratio = Width ÷ Height.

16:9 (1.78:1) is widescreen format used for HD TV and modern monitors. 4:3 (1.33:1) is standard format used for older monitors and some tablets. 16:9 provides more horizontal space.

Use the aspect-ratio property: aspect-ratio: 16/9;. For older browsers, use the padding hack: container with padding-top: 56.25% for 16:9 (9÷16=0.5625).