Free Points to Pixels Converter

Convert typographic points (pt) to digital screen pixels (px) based on PPI / DPI settings

Conversion Formula: 1pt = 1/72 inch → px = (pt × PPI) / 72

Understanding Points to Pixels Conversion

Converting physical typographic points (PT) to digital screen pixels (PX) is a standard workflow for web developers, graphic artists, and mobile designers. Points are physical units dating back to traditional print, defined as exactly 1/72 of an inch. Pixels are virtual screen visual elements. To map absolute points into virtual screen sizes, you must specify the display resolution density, measured in PPI (Pixels Per Inch) or DPI (Dots Per Inch).

The Mathematical Formula

To convert points to pixels, divide the points by 72 to convert them into physical inches, then multiply by the display or print resolution density (PPI/DPI):

Pixels = Points × (PPI ÷ 72)

For example, if you want to render a classic 12 pt typographic element at standard digital display density of 96 PPI:

12 pt × (96 PPI ÷ 72) = 16 pixels

If you want to render the same 12 pt typography size for high-resolution printing plates at 300 DPI:

12 pt × (300 DPI ÷ 72) = 50 pixels

PT to Pixels Reference Table

Compare physical point values calculated across common digital screen and high-resolution print densities:

Points (PT)at Web Standard (96 PPI)at Print Standard (150 DPI)at High-Res Press (300 DPI)
1 pt1.33 px2.08 px4.17 px
6 pt8.00 px12.50 px25.00 px
9 pt12.00 px18.75 px37.50 px
12 pt16.00 px25.00 px50.00 px
16 pt21.33 px33.33 px66.67 px
24 pt32.00 px50.00 px100.00 px
36 pt48.00 px75.00 px150.00 px
72 pt (1 in)96.00 px150.00 px300.00 px

Applying Typography Styles Correctly

When coding modern responsive stylesheet files (CSS), it is generally best practice to convert points (PT) into pixels (PX) or relative units (REM, EM). Keep the target scale set to 96 PPI for screen displays, but raise it to 300 DPI when building custom print stylesheets (@media print) to ensure high-fidelity physical typesetting.

Frequently Asked Questions (FAQs)

A PT to PX Converter is a free online tool that converts typographic points (PT) into screen pixel coordinates (PX) based on the target resolution density (PPI/DPI).

Points are defined as exactly 1/72 of a physical inch. The formula is: Pixels = Points × (PPI ÷ 72). At standard screen density (96 PPI), the calculation simplifies to: Pixels = Points × 1.333.

A typographic point (PT) is an absolute physical unit of length (1 pt = 1/72 inch). A pixel (PX) is a virtual relative coordinate on a screen whose physical size varies depending on display density (PPI).

Points are the standard in print publishing, desktop typography (e.g., in MS Word or Adobe InDesign), and iOS design (points). Pixels are standard for web layouts, CSS dimensions, and Android interface layouts.

At standard web density (96 PPI), a 16px font translates to exactly 12pt (16 × 72 ÷ 96 = 12 pt).