Skip to main content
RatioCalc

2.39:1 Cinema Calculator

CinemaScope 2.39:1 — the classic anamorphic widescreen. Solve cinema dimensions and letterbox sizing.

2.39:1 (often written 2.40:1 or 239:100) is the anamorphic widescreen standard — 2048×858 (2K Scope) and 4096×1716 (4K Scope) are both 2.39:1. Fit it on a 16:9 screen and you get the famous letterbox bars. Editors mastering DCPs and streaming Scope masters need pixel-exact framing or bars drift.

:

1920 × 803

Exact ratio: 239:100 · CSS: aspect-ratio: 239 / 100 · padding-top fallback: 41.84%

Formula

height = width × 100 ÷ 239

width = height × 239 ÷ 100

// padding-top fallback: 41.84% — keeps layout stable before the image loads

aspect-ratio: 239 / 100 — modern replacement for the padding hack

All math runs locally in your browser. No upload. Type either side, the other solves live — and the URL updates so you can share an exact pair (?w=1920&rw=239&rh=100) or bookmark a preset.

Common 239:100 resolutions

WidthHeightUse
320px134px
640px268px
1280px536px
1920px803px
2560px1071px
3840px1607px4K
5120px2142px
7680px3213px

When to use 239:100

Pitfalls to avoid

CSS snippet

Modern:

.frame { aspect-ratio: 239 / 100; width: 100%; overflow: hidden; }
.frame > img { width: 100%; height: 100%; object-fit: cover; }

Legacy padding hack (for very old browsers):

.wrap { position: relative; width: 100%; padding-top: 41.84%; }
.wrap > * { position: absolute; inset: 0; }

Pair with object-fit: contain to letterbox without cropping, or cover to fill and crop safely.

Platform reference

YouTube thumbnail — 1280 × 720 (16:9)
YouTube Shorts — 1080 × 1920 (9:16)
Instagram feed post — 1080 × 1350 (4:5)
Instagram story — 1080 × 1920 (9:16)
TikTok video — 1080 × 1920 (9:16)
X/Twitter card — 1200 × 675 (16:9)

Frequently asked

Is it 2.35:1 or 2.39:1?

Historically 2.35:1, modern spec is 2.39:1 (sometimes rounded to 2.40). Use 239÷100 for calculations.

What is 2.39:1 in a 1920-wide timeline?

1920×803 — leaving ~138 px top + bottom bar each when centered in 1920×1080.

How does anamorphic desqueeze relate?

An anamorphic lens squeezes 2× horizontally on capture; desqueezing 2× restores scope. The final frame is still 2.39:1.

Tip: add ?w=1920 or ?h=1080 to this URL to prefill the calculator — useful for linking from a spec doc.

Other ratios

Look up by resolution

What aspect ratio is 1920×1080? → · Full FAQ →

Privacy: ratio math never leaves your browser. No account, no upload — the pair you type stays on-device. Shareable URLs encode only dimensions, never personal data.