What an aspect ratio actually is
An aspect ratio is the relationship between an image's width and height, written as two numbers separated by a colon. It says nothing about size: 1920×1080, 1280×720 and 640×360 are three very different resolutions with the same 16:9 ratio, which is why a 720p video fills a 4K screen without bars or distortion. The math behind the tool is deliberately simple, and it is worth knowing so you can sanity-check any result:
- Simplifying: divide width and height by their greatest common divisor (GCD). This is exact, not an approximation.
- Decimal form: width ÷ height. 16:9 = 1.7778, 4:3 = 1.3333, 9:16 = 0.5625. Anything above 1 is landscape, below 1 is portrait.
- Resizing on a locked ratio: new height = new width × (ratio height ÷ ratio width), then rounded to a whole pixel — with a warning when rounding actually changed the value.
Three worked examples
1. Simplify 1920×1080
The GCD of 1920 and 1080 is 120. Dividing both sides gives 16:9, decimal 1.7778 — an exact match for the most common video standard. Every mainstream 16:9 resolution is just a multiple of this pair: 1280×720 is 80×(16:9), 3840×2160 is 240×(16:9). The full ladder from 640×360 to 8K is on the 16:9 resolution chart.
2. Simplify 1366×768 — the classic trap
The GCD of 1366 and 768 is just 2, so the exact answer is the unhelpful-looking 683:384. Its decimal, 1.7786, sits about 0.05% away from true 16:9. That tiny gap is why this laptop resolution confuses people: it is sold as 16:9, behaves like 16:9, but a locked-16:9 resize starting from 1366 will always land on a fractional height (768.375). The calculator flags both facts instead of picking one. More reverse-lookup cases like this are on the pixels-to-ratio page.
3. Resize 16:9 to 1000 px wide
Lock 16:9 and type 1000 as the width: the exact height is 1000 × 9 ÷ 16 = 562.5 px. Half a pixel does not exist, so the tool rounds to 562 using round-half-to-even and says so. It also tells you the fix — 16:9 widths divisible by 16 (such as 992 or 1008) always produce whole-pixel heights. Silent rounding is how images end up one pixel off-ratio and video encoders end up complaining about odd dimensions.
Common aspect ratios at a glance
| Ratio | Decimal | Orientation | Example resolutions | Typical use |
|---|---|---|---|---|
| 9:16 | 0.5625 | Portrait | 1080×1920, 720×1280 | TikTok, Reels, Shorts, Stories |
| 4:5 | 0.8 | Portrait | 1080×1350 | Instagram portrait posts |
| 1:1 | 1 | Square | 1080×1080 | Profile pictures, square posts |
| 5:4 | 1.25 | Landscape | 1280×1024 | Older SXGA monitors |
| 4:3 | 1.3333 | Landscape | 1024×768, 4032×3024 | Classic TV, phone/compact camera sensors |
| 3:2 | 1.5 | Landscape | 6000×4000 | DSLR/mirrorless photos, 35mm film |
| 16:10 | 1.6 | Landscape | 1920×1200, 2560×1600 | Productivity laptops |
| 16:9 | 1.7778 | Landscape | 1920×1080, 3840×2160 | HD/4K video, YouTube, TV |
| 1.85:1 | 1.85 | Landscape | 1998×1080 (DCI flat) | Cinema "flat" projection |
| 21:9-class | 2.3333* | Landscape | 3440×1440, 2560×1080 | Ultrawide monitors |
| 2.39:1 | 2.39 | Landscape | 2048×858 (DCI scope) | Widescreen cinema "scope" |
*Marketing value — actual ultrawide panels are 2.37 to 2.40, none exactly 21:9. The ultrawide page lists the exact ratio of each panel resolution.
What people use this for
- Exporting video for a specific platform — checking that an edit will land on 9:16 for vertical feeds or 16:9 for YouTube before rendering.
- Cropping photos for Instagram — seeing exactly how much of a shot survives the 4:5 portrait crop before committing.
- CSS and responsive design — getting the
aspect-ratiovalue for an embed container, or the padding-top percentage for older fallbacks (9÷16 = 56.25%). - Resizing images without distortion — locking the original ratio and computing the missing dimension instead of eyeballing it.
- Identifying odd files — pasting the pixel size of a scan, screenshot or sensor output into the reverse lookup to find what standard it is (or isn't).
Letterbox vs crop, in numbers
When content and frame ratios differ, you pay in one of two currencies: screen area (letterbox) or content (crop). The preview above computes the exact price. Two examples worth memorising: 4:3 content on a 16:9 screen wastes 25% of the screen width as side bars, or loses 25% of its height if you crop to fill. And 16:9 footage placed in a 9:16 vertical frame loses a brutal 68.4% of its width when cropped — which is why vertical-first platforms keep telling creators to shoot vertical rather than crop landscape footage.
Link to this tool
If this calculator saved you some arithmetic, a link helps other people find it (and is the only "payment" this free tool ever asks for):
<a href="https://aspectcalc.pages.dev/">Aspect Ratio Calculator</a>