The aspect ratio calculator is an essential tool for designers, video editors, photographers, and developers. Aspect ratio defines the proportional relationship between an image or video's width and height. Getting it wrong leads to stretched, squished, or cropped content — a common mistake when resizing images for different platforms.
This guide explains what aspect ratios are, how to calculate them, the standard ratios for every major platform, and the formulas to resize any image or video while keeping perfect proportions.
Calculate Aspect Ratio and New Dimensions Instantly
Enter any two dimensions to get the simplified ratio and calculate new sizes without distortion.
What Is Aspect Ratio and Why Does It Matter?
Aspect ratio is expressed as two numbers separated by a colon (e.g., 16:9) representing the ratio of width to height. An image of 1920×1080 pixels has a 16:9 aspect ratio because 1920/1080 simplifies to 16/9.
Common Aspect Ratios
- 16:9 — standard widescreen (YouTube, TV, laptops)
- 9:16 — portrait vertical (mobile video, Reels, Shorts)
- 1:1 — square (Instagram feed, avatars)
- 4:3 — traditional TV format
- 21:9 — ultrawide cinema format
How to Simplify an Aspect Ratio
Divide both numbers by their Greatest Common Divisor (GCD). For 1920×1080: GCD = 120 → 1920/120 : 1080/120 = 16:9
Aspect Ratio Formulas: Calculate New Dimensions
To find new HEIGHT given new width
New Height = (Original Height × New Width) ÷ Original Width
Example: 1920×1080, resize width to 800px → New Height = (1080 × 800) ÷ 1920 = 450px
To find new WIDTH given new height
New Width = (Original Width × New Height) ÷ Original Height
Example: Need height 360px for 16:9 → New Width = (1920 × 360) ÷ 1080 = 640px
CSS Padding-top for Aspect Ratio
padding-top % = (Height ÷ Width) × 100. For 16:9: (9/16) × 100 = 56.25%
Standard Aspect Ratios for Every Platform (2026)
| Platform | Aspect Ratio | Recommended Resolution |
|---|---|---|
| YouTube (standard) | 16:9 | 1920×1080 |
| YouTube Shorts | 9:16 | 1080×1920 |
| Instagram Feed (portrait) | 4:5 | 1080×1350 |
| Instagram Feed (square) | 1:1 | 1080×1080 |
| Instagram Stories/Reels | 9:16 | 1080×1920 |
| TikTok | 9:16 | 1080×1920 |
| LinkedIn Video | 16:9 | 1920×1080 |
| Cinema (DCI 4K) | 1.85:1 or 2.39:1 | 4096×2160 |
| 4×6 photo print | 2:3 | — |
| Passport photo | 1:1.25 | 35×45mm |
Aspect Ratio in Web Development
Modern CSS
.video-container {
aspect-ratio: 16 / 9;
width: 100%;
}
Padding-top Hack (Legacy)
.video-wrapper {
position: relative;
width: 100%;
padding-top: 56.25%;
}
.video-wrapper video {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
}
Padding-top Reference
| Ratio | Padding-top % | Use Case |
|---|---|---|
| 16:9 | 56.25% | YouTube embeds |
| 9:16 | 177.78% | Mobile video |
| 4:3 | 75% | Legacy video |
| 1:1 | 100% | Avatars, square images |
| 4:5 | 125% | Instagram portrait |
How to Use the Tool (Step by Step)
- 1
Open the tool
Visit the on ToolsArena.
- 2
Enter your values
Fill in the required fields with your data.
- 3
View results
See calculated results instantly — no signup needed.
Frequently Asked Questions
What is the most common aspect ratio for videos?+−
16:9 is the dominant standard in 2026 — it is the native ratio for HD and 4K screens, YouTube, most TV sets, and laptops. For mobile-first content (Instagram Reels, YouTube Shorts, TikTok), 9:16 is the standard vertical format. For cinema, 2.39:1 is common for the widescreen cinematic look.
How do I resize an image without losing its aspect ratio?+−
Change only one dimension and calculate the other: New Height = (Original Height × New Width) ÷ Original Width. In Photoshop or GIMP, lock the aspect ratio (padlock icon) before resizing. In CSS, set only width and use height: auto.
What aspect ratio is best for Instagram in 2026?+−
For Instagram feed posts: 4:5 portrait (1080×1350) maximises screen real estate. For Stories and Reels: 9:16 (1080×1920). The 4:5 portrait format is generally recommended for maximum feed engagement.
What is the aspect ratio of a modern smartphone?+−
Most modern smartphones (2024–2026) have an aspect ratio between 19.5:9 and 20:9. iPhone 15 series uses 19.5:9, while many Android flagships use 20:9. For full-screen mobile content, design at 9:16 (1080×1920) as the safe default.
How do I calculate aspect ratio from pixel dimensions?+−
Divide both dimensions by their Greatest Common Divisor. For 1280×720: GCD = 80. 1280÷80 = 16, 720÷80 = 9. Aspect ratio = 16:9. You can also express as a decimal: 1280/720 = 1.778.
Calculate Aspect Ratio and New Dimensions Instantly
Enter any two dimensions to get the simplified ratio and calculate new sizes without distortion.
Use Aspect Ratio Calculator FreeRelated Guides
How to Resize Images Online Free — Complete Guide (2026)
Social media sizes, pixel dimensions, DPI, file formats and everything you need to resize images perfectly.
Image Compression Guide
Everything web developers, bloggers, and designers need to know about compressing images for fast, beautiful websites.
How to Crop an Image Online — Free Guide (2026)
Crop photos to any size, aspect ratio, or shape — for social media, passports, thumbnails, and more.