Converter

Aspect Ratio Calculator

Calculate aspect ratios from pixel dimensions, or find the missing dimension given a target ratio. Compare common ratios for video, photo, and social media.

Quick Answer

To find aspect ratio: divide width and height by their greatest common divisor. 1920 / 120 = 16, 1080 / 120 = 9, so 1920x1080 is 16:9.

1920 x 1080
Aspect Ratio16:9
Decimal1.7778
Dimensions1920 x 1080 px

Matches standard ratio: 16:9YouTube, HD/4K TV, most monitors

Common Aspect Ratios

RatioDecimalCommon Use
1:11.000Instagram square, profile pictures
4:31.333Traditional TV, iPad, PowerPoint
3:21.50035mm film, DSLR photos, iPhone photos
16:91.778YouTube, HD/4K TV, most monitors
16:101.600MacBook displays, WUXGA
21:92.333Ultrawide monitors, cinema
9:160.563TikTok, Instagram Reels, Stories
4:50.800Instagram portrait, Facebook ads
2:30.667Pinterest pins, book covers
32:93.556Super ultrawide monitors

About This Tool

The Aspect Ratio Calculator is a two-in-one utility for anyone working with images, videos, or responsive layouts. In Calculate mode, enter any width and height in pixels and instantly see the simplified aspect ratio, its decimal equivalent, and whether it matches a well-known standard like 16:9 or 4:3. In Resize mode, enter a target aspect ratio and one known dimension, and the tool computes the other dimension for you — essential when resizing images or setting up video export dimensions.

Why Aspect Ratios Matter

Aspect ratios govern how content appears on every screen. A video shot in 16:9 looks perfect on a YouTube embed but gets cropped awkwardly in a 9:16 Instagram Story. A website banner designed at 4:1 will distort if the CMS expects 16:9. Understanding and calculating aspect ratios ensures your visuals display correctly everywhere — no accidental stretching, no unintended cropping, no wasted pixels. For responsive web design, maintaining aspect ratios is critical when images scale across breakpoints.

The Math Behind It

An aspect ratio is the simplified fraction of width to height. The simplification uses the greatest common divisor (GCD) algorithm — the same one Euclid described over 2,000 years ago. For 1920x1080: GCD(1920, 1080) = 120, so 1920/120 : 1080/120 = 16:9. Some resolutions do not simplify to a recognizable ratio. For instance, 1366x768 simplifies to 683:384 — it is close to 16:9 but not exact, which is why some budget laptop screens have a slightly off-standard aspect ratio.

Choosing the Right Ratio for Your Platform

Every platform has its own preferred dimensions. YouTube and most streaming services use 16:9 for landscape video. TikTok, Instagram Reels, and YouTube Shorts use 9:16 for vertical. Instagram feed posts can be 1:1 (square) or 4:5 (portrait, which takes up more screen real estate and tends to get more engagement). Pinterest favors tall pins at 2:3. Facebook link previews use 1.91:1. If you are creating content for multiple platforms simultaneously, start with the largest dimension and crop down for each platform rather than scaling up, which degrades quality.

Aspect Ratio in Web Development

Modern CSS provides the aspect-ratio property, which lets you set a fixed ratio on any element. Before this property existed, developers used the padding-bottom hack (e.g., padding-bottom: 56.25% for 16:9). The CSS property is now supported in all modern browsers and is the correct way to create responsive containers that maintain their proportions. For images, combine aspect-ratio with object-fit: cover to prevent distortion while filling the container.

Resolution Reference

Standard resolutions map to specific aspect ratios. 640x480 (VGA) is 4:3. 1280x720 (HD) is 16:9. 1920x1080 (Full HD) is 16:9. 2560x1440 (QHD) is 16:9. 3840x2160 (4K UHD) is 16:9. 2560x1600 (MacBook Pro 13) is 16:10. 3024x1964 (MacBook Pro 14) is approximately 3:2. When designing at 2x or 3x for retina displays, the aspect ratio remains the same — you are simply doubling or tripling the pixel count in each direction.

Print and Photography

Common print sizes follow different ratios. A 4x6 inch print is 3:2 (matching DSLR sensor proportions). An 8x10 inch print is 5:4, which means a 3:2 photo will be slightly cropped when printed at 8x10. An 11x14 inch print is close to 4:3 but not exact. Understanding these differences prevents unpleasant surprises when ordering prints — always check whether your image ratio matches the print size ratio before uploading.

Frequently Asked Questions

What is an aspect ratio?
An aspect ratio is the proportional relationship between the width and height of an image, video, or screen. It is expressed as two numbers separated by a colon, such as 16:9. This means for every 16 units of width, there are 9 units of height. Aspect ratios are essential for ensuring images and videos display correctly without stretching or cropping across different devices and platforms.
How do you calculate aspect ratio from pixel dimensions?
To calculate aspect ratio from pixel dimensions, find the greatest common divisor (GCD) of the width and height, then divide both by that number. For example, for 1920x1080 pixels: GCD(1920, 1080) = 120. So 1920/120 = 16 and 1080/120 = 9, giving you 16:9. If the simplified ratio has large numbers (like 683:384), the dimensions do not correspond to a standard ratio.
What aspect ratio is best for YouTube?
YouTube's standard aspect ratio is 16:9, which matches most modern monitors and TVs. Common resolutions include 1280x720 (720p), 1920x1080 (1080p), 2560x1440 (1440p), and 3840x2160 (4K). YouTube will add black bars (letterboxing or pillarboxing) if your video does not match 16:9. For YouTube Shorts, use 9:16 (vertical). For thumbnails, YouTube recommends 1280x720 (16:9).
What is the difference between 16:9 and 16:10?
16:9 is the standard widescreen ratio used by TVs, YouTube, and most external monitors. 16:10 is slightly taller and is commonly used by laptop displays, especially MacBooks (which technically use an even taller 16:10.35 on newer models). The difference is subtle: a 16:10 display at the same width has about 11% more vertical space, which is useful for productivity tasks like coding and document editing.
How do I resize an image while keeping its aspect ratio?
To maintain the aspect ratio when resizing, you only need to specify one dimension — the other is calculated automatically. If you know the width, multiply it by the original height and divide by the original width. For example, to resize a 1920x1080 image to 1280px wide: 1280 x (1080/1920) = 720px tall. Use the resize mode in this calculator to do this math instantly for any target ratio.
What aspect ratios do social media platforms use?
Each platform has preferred dimensions: Instagram feed posts use 1:1 (square) or 4:5 (portrait). Instagram Stories and Reels use 9:16 (vertical). Facebook feed images work best at 1.91:1 (1200x628). Twitter/X images are 16:9 (1200x675). Pinterest pins are 2:3 (1000x1500). LinkedIn posts are 1.91:1 or 1:1. TikTok videos are 9:16 (1080x1920). Always check current platform guidelines as they evolve.

Was this tool helpful?