About the Portrait Aspect Ratio Calculator
An aspect ratio describes the proportional relationship between an image or screen's width and height, written as width:height. A ratio is called portrait when the height is greater than the width — the opposite of landscape. This calculator takes the width and height you enter, reduces them to the simplest whole-number ratio using the greatest common divisor (GCD), reports the decimal equivalent, and — if you supply a new width — scales the height proportionally so a resized image or crop is not stretched or squashed.
The formula
Given a width W and height H:
- Simplified ratio: divide both W and H by their GCD — W ÷ gcd(W,H) : H ÷ gcd(W,H). For 1080 × 1920, gcd(1080,1920) = 120, so the ratio reduces to 9:16.
- Decimal ratio: W ÷ H. A value under 1 confirms portrait orientation (taller than wide); exactly 1 is square; over 1 is landscape.
- Proportional scaling: to resize without distortion, a new width W′ needs a new height of H′ = W′ × (H ÷ W). This keeps W′ ÷ H′ equal to the original W ÷ H.
Common portrait aspect ratios
- 1:1 — square format; Instagram feed posts, profile photos
- 4:5 — the tallest standard Instagram feed post format
- 3:4 — classic photo prints and many tablet screens in portrait mode
- 2:3 — 35mm film and common 4×6 photo prints
- 9:16 — vertical phone screens; Instagram Reels, TikTok, YouTube Shorts
Practical uses
- Finding the simplified ratio name for a set of pixel or print dimensions
- Calculating the height of an image at a new target width (or vice versa) without distortion
- Checking whether a photo or design matches a platform's required portrait ratio before upload