Aspect Ratio Calculator
Calculate and convert aspect ratios for video, photos and screens.
Common Ratios
What is an aspect ratio calculator?
An aspect ratio calculator determines the proportional relationship between the width and height of a rectangular shape. Aspect ratios are expressed as width:height (like 16:9 or 4:3) and are essential for video production, photography, responsive web design, and print layout. This tool calculates the aspect ratio from pixel dimensions or scales dimensions to match a desired ratio.
Understanding aspect ratios prevents content from looking stretched or cropped on different displays. A 16:9 video looks perfect on a widescreen TV but gets letterboxed (black bars) on a 4:3 display. Designers and developers use aspect ratios to create responsive layouts that maintain proportions across different screen sizes.
How to use this tool
Enter width and height in pixels to calculate the aspect ratio. Alternatively, enter a target ratio and one dimension to calculate the other. The tool reduces ratios to their simplest form (1920x1080 becomes 16:9) and shows common presets for quick reference.
Common aspect ratios
- 16:9 โ widescreen standard for HD/4K video, modern monitors, YouTube, streaming services.
- 4:3 โ traditional TV and computer monitors, iPad, presentation slides.
- 21:9 โ ultrawide monitors and cinematic content.
- 1:1 โ square format, Instagram posts, profile pictures.
- 9:16 โ vertical video for mobile content (Stories, TikTok, Shorts).
Aspect ratios in web design
In CSS, the aspect-ratio property maintains proportions for responsive elements. Before this property existed, developers used the padding-bottom hack (padding-bottom: 56.25% for 16:9). Modern CSS makes it simple: set aspect-ratio: 16 / 9 on any element. This is crucial for embedding videos, creating image galleries, and designing card layouts that look consistent across devices.
Frequently asked questions
What aspect ratio is 1920x1080?
1920x1080 (Full HD) has an aspect ratio of 16:9, which is the standard widescreen format. Other common 16:9 resolutions include 2560x1440 (QHD), 3840x2160 (4K UHD), and 1280x720 (HD). The 16:9 ratio became the standard for high-definition content because it offers a wider field of view than 4:3 while being practical for most content types.
How do I maintain aspect ratio when resizing?
Lock the aspect ratio in your editing tool (usually a chain link icon between width and height fields). When you change one dimension, the other adjusts proportionally. Mathematically: new height = new width / (original width / original height). For example, to resize a 1920x1080 image to 1280 wide: 1280 / (1920/1080) = 720.