HomeUnit Conversion › Paper Size Converter

Paper Size Converter

Returns the dimensions of a standard paper size (ISO A0–A10, B0–B10, C4–C6, DL, US Letter, Legal, Tabloid, Executive, Statement, ANSI C–E) in millimetres and inches with area and aspect ratio, or finds the nearest standard size for given dimensions.

When to use

You need the exact size of a paper format, the inch equivalent of an A or B size (or vice versa), the area for paper-weight calculations, or want to identify a sheet you measured.

Do not use when: You need envelope fit for a folded sheet, printer margins, or photo/print sizes such as 4 × 6 in (use aspect-ratio for image proportions).

Formula

ISO 216: A0 = 841 × 1189 mm (area ≈ 1 m²), each next size = previous long side halved, aspect √2; B(n) sides = geometric mean of A(n) and A(n−1); C(n) = geometric mean of A(n) and B(n); 1 in = 25.4 mm; area = width × height; aspect = height / width; nearest size = min over sizes of max(|w − w₀|/w₀, |h − h₀|/h₀)

ISO dimensions are the standard's rounded millimetre values (tolerance ±1.5 mm for sizes up to 150 mm, ±2 mm up to 600 mm, ±3 mm above). US sizes follow ANSI/ASME Y14.1 and the customary Letter/Legal definitions.

Inputs

ParameterTypeUnitRequiredDescription
sizeenum: a0 | a1 | a2 | a3 | a4 | a5 | a6 | a7 | a8 | a9 | a10 | b0 | b1 | b2 | b3 | b4 | b5 | b6 | b7 | b8 | b9 | b10 | c4 | c5 | c6 | dl | letter | legal | tabloid | executive | statement | ansi_c | ansi_d | ansi_e | customyesStandard size to look up, or custom to identify a sheet from width and height.
widthnumbernoMeasured width in dimension_unit; used only with size=custom. Range: > 0, ≤ 5000
heightnumbernoMeasured height in dimension_unit; used only with size=custom. Range: > 0, ≤ 5000
dimension_unitenum: mm | indefault mmUnit of the custom width and height.

Outputs

OutputTypeUnitDescription
size_namestringName and family of the size (for custom input: the dimensions given).
width_mmnumbermmShort side in millimetres (portrait orientation).
height_mmnumbermmLong side in millimetres.
width_innumberinShort side in inches.
height_innumberinLong side in inches.
area_m2numberSheet area in square metres (multiply by grammage in g/m² for the sheet weight).
area_in2numberin²Sheet area in square inches.
aspect_rationumberHeight divided by width; ISO sizes are √2 ≈ 1.4142.
aspect_ratio_textstringRatio as 1 : x.
nearest_standard_sizestringClosest standard size for custom dimensions (orientation ignored).
deviation_percentnumber%Largest relative difference of the two sides from the nearest standard size (custom input only).
series_notestringHow the size relates to its family (halving, area, next sizes).

Example

A4: {"size":"a4"}{"width_mm":210,"height_mm":297,"width_in":8.27,"height_in":11.69,"area_m2":0.0624,"area_in2":96.7,"aspect_ratio":1.4143,"size_name":"A4 (ISO 216)"}

US Letter: {"size":"letter"}{"width_mm":215.9,"height_mm":279.4,"width_in":8.5,"height_in":11,"area_m2":0.0603,"area_in2":93.5,"aspect_ratio":1.2941}

GET https://tttkmbb.com/api/v1/calculate/paper-size?size=a4

Machine access

Sources

FAQ

Why is A4 not exactly 1/16 m²?

Dimensions are rounded to whole millimetres at every halving step; A4 is 210 × 297 = 0.06237 m² instead of 0.0625 m², and its ratio 1.4143 differs from √2 in the fourth decimal.

Is A4 the same as Letter?

No. A4 is 6 mm narrower and 18 mm taller than US Letter (210 × 297 vs 215.9 × 279.4 mm); documents laid out for one usually need scaling (about 94 %) to print on the other.

Which envelope fits an A4 sheet?

C4 unfolded, C5 folded once, DL or C6/5 folded in thirds; C6 takes an A6 card or A4 folded twice.

Related calculators