Search tools...
Calculators

Aspect Ratio Calculator Guide: Resize Images & Videos Correctly (2026)

Learn how to calculate, maintain, and convert aspect ratios for images, videos, and screens without distortion.

8 min readUpdated March 24, 2026Design, Video, Images, Web Development

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.

Free Tool

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 Free

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)

PlatformAspect RatioRecommended Resolution
YouTube (standard)16:91920×1080
YouTube Shorts9:161080×1920
Instagram Feed (portrait)4:51080×1350
Instagram Feed (square)1:11080×1080
Instagram Stories/Reels9:161080×1920
TikTok9:161080×1920
LinkedIn Video16:91920×1080
Cinema (DCI 4K)1.85:1 or 2.39:14096×2160
4×6 photo print2:3
Passport photo1:1.2535×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

RatioPadding-top %Use Case
16:956.25%YouTube embeds
9:16177.78%Mobile video
4:375%Legacy video
1:1100%Avatars, square images
4:5125%Instagram portrait

How to Use the Tool (Step by Step)

  1. 1

    Open the tool

    Visit the on ToolsArena.

  2. 2

    Enter your values

    Fill in the required fields with your data.

  3. 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.

Free — No Signup Required

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 Free

Related Guides