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.
16:91.77781920 x 1080 pxMatches standard ratio: 16:9 — YouTube, HD/4K TV, most monitors
Common Aspect Ratios
| Ratio | Decimal | Common Use |
|---|---|---|
| 1:1 | 1.000 | Instagram square, profile pictures |
| 4:3 | 1.333 | Traditional TV, iPad, PowerPoint |
| 3:2 | 1.500 | 35mm film, DSLR photos, iPhone photos |
| 16:9 | 1.778 | YouTube, HD/4K TV, most monitors |
| 16:10 | 1.600 | MacBook displays, WUXGA |
| 21:9 | 2.333 | Ultrawide monitors, cinema |
| 9:16 | 0.563 | TikTok, Instagram Reels, Stories |
| 4:5 | 0.800 | Instagram portrait, Facebook ads |
| 2:3 | 0.667 | Pinterest pins, book covers |
| 32:9 | 3.556 | Super 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?
How do you calculate aspect ratio from pixel dimensions?
What aspect ratio is best for YouTube?
What is the difference between 16:9 and 16:10?
How do I resize an image while keeping its aspect ratio?
What aspect ratios do social media platforms use?
Was this tool helpful?