Aspect Ratio Calculator
Calculate aspect ratios from any dimensions. Enter width and height to get the simplified ratio instantly. Includes visual preview and common presets.
Common Aspect Ratios
What is Aspect Ratio?
Aspect ratio is the proportional relationship between an image's width and height, expressed as two numbers separated by a colon (e.g., 16:9). It describes the shape of the image, not its size.
For example, both 1920×1080 and 3840×2160 share the same 16:9 aspect ratio — the second image is exactly twice as large, but maintains the same proportions.
How This Calculator Works
The calculator finds the Greatest Common Divisor (GCD) of your width and height, then divides both by that number to get the simplified ratio.
Example: 1920 × 1080
GCD = 120
1920 ÷ 120 = 16
1080 ÷ 120 = 9
Result: 16:9
When to use each ratio
- 1:1 (Square): Instagram posts, profile pictures, album covers, thumbnails.
- 4:3 (Classic): Traditional photography, slide presentations, older displays.
- 3:2 (Photography): 35mm film, most DSLR and mirrorless cameras, standard 4×6 prints.
- 16:9 (Widescreen): YouTube, Full HD, 4K monitors, most modern TVs, slide decks exported to PDF.
- 21:9 (Ultrawide): Cinemascope films, ultrawide desktop monitors, large-screen trailers.
- 9:16 (Vertical): Instagram Stories, TikTok, YouTube Shorts, Reels, mobile-first hero video.
- 4:5 (Portrait): Instagram feed portrait — occupies the maximum feed height without being cropped.
- 2:3 (Classic portrait): Printed photos, book covers, movie posters.
Why aspect ratio matters
Getting the ratio right before you export matters more than the pixel count. A correctly proportioned image can be scaled up or down without distortion, whereas resizing to the wrong ratio forces either a crop, a stretch, or letterboxing — all of which degrade the result.
Social networks, video platforms, and print services each expect a specific ratio for each slot they show. Uploading at the wrong ratio can mean faces cropped out of a profile picture, an important part of a banner hidden behind a mobile UI overlay, or white bars on either side of a video. Designing to the platform's native ratio — not just to its pixel size — avoids these surprises.
For responsive web design, expressing size as a ratio (for example via the CSS aspect-ratio property) lets an image or video occupy the correct shape at any container width, preventing cumulative layout shift as media loads.
How aspect ratio relates to resolution
Resolution (width × height in pixels) and aspect ratio are related but different:
- Resolution tells you how many pixels are in the image.
- Aspect ratio tells you the shape of those pixels considered as a rectangle.
- Many resolutions can share one ratio: 1280×720, 1920×1080, 2560×1440, and 3840×2160 are all 16:9.
- Two images with the same pixel count but different ratios look very different: 1200×1200 (1:1, 1.44 megapixels) and 1600×900 (16:9, 1.44 megapixels) are sized similarly but shaped very differently.
When you need a specific ratio at a minimum quality, choose the ratio first, then pick dimensions that satisfy both the ratio and the platform's minimum width.
Converting between ratios safely
To change an image from one aspect ratio to another, two options are available. Cropping removes pixels from one or more edges, which loses content but keeps the remaining pixels sharp. Letterboxing (or pillarboxing) adds blank bars to fill the new shape, which keeps all content but introduces empty space. Stretching or non-uniform scaling should almost never be used for photographs, since it distorts faces, circles, and straight lines.
If in doubt, crop rather than stretch. Plan for the crop while composing the shot: keep critical subjects away from edges, and reserve the centre third for the most important content.
Related tools and references
- Guide: aspect ratios explained — deeper background and examples.
- Visual comparison of aspect ratios — see shapes side by side.
- Pixel ↔ centimetre converter — for print sizing at a given DPI.
- DPI / PPI calculator — translate pixels to physical dimensions.
- Social media image sizes — canonical dimensions per platform.
Last reviewed on 24 April 2026.