Aspect Ratio Reference

Common display and video aspect ratios with pixel dimensions

Reference all standard aspect ratios including 16:9, 4:3, 21:9, 9:16, and 2.39:1 with their common resolutions, plus a helper that computes the missing width or height for any ratio.

What does an aspect ratio like 16:9 mean?

An aspect ratio is the proportion of width to height, written as two whole numbers. 16:9 means that for every 16 units of width there are 9 units of height. It does not fix the pixel size, only the shape, so 1280 by 720 and 1920 by 1080 are both 16:9.

Whether you are exporting a video, sizing a thumbnail, or buying a monitor, the aspect ratio decides the shape of the frame. This reference lists every common ratio with its typical use and example resolutions, and includes a helper to compute the exact pixel dimensions for any ratio.

How it works

An aspect ratio is simply width divided by height, reduced to the smallest whole numbers. A 1920 × 1080 frame has a ratio of 1920 / 1080 = 16/9, so it is written 16:9. The ratio fixes the shape, not the size — every 16:9 resolution from 1280 × 720 up to 3840 × 2160 has the same proportions.

To find a missing dimension while keeping the ratio, scale by the opposite side:

height = width  × (ratioH / ratioW)
width  = height × (ratioW / ratioH)

For a 16:9 frame 2560 px wide, the height is 2560 × 9 / 16 = 1440 px. The tool applies this for whichever dimension you supply and rounds to whole pixels.

Example and notes

If your source footage is 4:3 but your target is 16:9, you will either see pillarboxing (black bars at the sides) or you must crop the top and bottom. Matching the export ratio to the destination surface avoids both. For multi-platform delivery, master in the widest ratio you need and crop down — 16:9 masters crop cleanly to 1:1 and 9:16.

Common gotcha: 16:10 and 16:9 look almost identical but are not — a 16:9 image stretched onto a 16:10 panel will appear slightly squashed vertically. Always confirm both source and target ratios before scaling.