PX to PT Converter
Convert pixels to points instantly with customizable DPI settings
Live Font Size Preview
Hello
Unit Conversion Table
Conversion values at 96 DPI
| Unit | Pixels (px) | Points (pt) | Inches (in) | Centimeters (cm) | Millimeters (mm) |
|---|---|---|---|---|---|
| 1 px | 1.0 | 0.75 | 0.0104 | 0.0265 | 0.265 |
| 1 pt | 1.3333 | 1.0 | 0.0139 | 0.0353 | 0.353 |
| 1 in | 96.0 | 72.0 | 1.0 | 2.54 | 25.4 |
| 1 cm | 37.8 | 28.35 | 0.3937 | 1.0 | 10.0 |
| 1 mm | 3.78 | 2.835 | 0.0394 | 0.1 | 1.0 |
About PX to PT Conversion
What is PX (Pixels)?
PX (Pixels) is a unit of measurement used in digital displays and web design. It represents a single point of color on a screen. The relationship between pixels and physical measurements depends on the DPI (dots per inch) of your screen or device.
What is PT (Points)?
PT (Points) is a typographic unit used in print and digital design. One point equals 1/72 of an inch. Points are commonly used in typography for font sizes and are especially important in print design and PDF documents.
The Conversion Formula
1 PX = 72/DPI PT
At standard 96 DPI: 1 PX ≈ 0.75 PT
PX to PT Conversion Table (96 DPI)
| Pixels (px) | Points (pt) |
|---|---|
| 1px | 0.75pt |
| 2px | 1.5pt |
| 4px | 3pt |
| 6px | 4.5pt |
| 8px | 6pt |
| 10px | 7.5pt |
| 12px | 9pt |
| 14px | 10.5pt |
| 16px | 12pt |
| 18px | 13.5pt |
| 20px | 15pt |
| 24px | 18pt |
| 28px | 21pt |
| 32px | 24pt |
| 36px | 27pt |
| 40px | 30pt |
| 48px | 36pt |
| 56px | 42pt |
| 64px | 48pt |
| 72px | 54pt |
| 80px | 60pt |
| 96px | 72pt |
| 112px | 84pt |
| 128px | 96pt |
How to Convert PX to PT Online
- 1
Enter your pixel value
Type any pixel value into the Pixels (px) input field. The default is 16px, a common base font size used in web browsers.
- 2
Read the point value instantly
The equivalent PT value appears immediately in the Points (pt) field. At 96 DPI (web standard), 16px = 12pt.
- 3
Adjust DPI if needed
Click "Show Settings" to change the DPI value. Use 96 DPI for screen/web, 72 DPI for legacy print, or your printer's actual DPI for accurate physical output sizing.
- 4
Copy and use in your project
Click the Copy button to copy the point value to your clipboard, then paste it directly into CSS, InDesign, Word, or any design tool that accepts PT values.
Common Use Cases for PX to PT Conversion
Print Stylesheet Development
CSS @media print stylesheets use PT for font sizes since print media is measured in points. Convert your screen pixel sizes to ensure readable print output.
PDF Generation
Libraries like jsPDF, PDFKit, and wkhtmltopdf use points as their native unit. Convert your web pixel measurements to PT before passing them to PDF generation code.
Microsoft Word and Office Documents
Word and Excel measure font sizes and spacing in points. Convert pixel measurements from your web design to match typography in Office documents for consistent branding.
Adobe InDesign and Illustrator
Adobe print tools default to points. When reproducing a web layout in InDesign or creating a print version of a digital design, convert pixel values to PT for accurate sizing.
Email Template Design
Some email clients and ESPs render better with point-based font sizes in HTML email. Converting from pixels to PT can improve cross-client typography consistency.
iOS and macOS Development
Apple platforms historically use points as their logical unit for UI layout. When bridging web design specifications to native app development, PX to PT conversion ensures visual parity.
Frequently Asked Questions
How many PT is 1 PX?
At the standard web resolution of 96 DPI, 1px = 0.75pt. This means 16px = 12pt, 24px = 18pt, and 32px = 24pt. Use the conversion table above for a full reference list of common pixel-to-point values.
What is the PX to PT conversion formula?
The formula is: PT = PX × (72 ÷ DPI). At 96 DPI: PT = PX × 0.75. To convert back, use: PX = PT × (DPI ÷ 72). At 96 DPI: PX = PT × 1.3333.
What DPI should I use for the conversion?
Use 96 DPI for screen and web design (Windows standard), 72 DPI for macOS screen contexts and legacy print, or your printer's native DPI (typically 300–600 DPI) for accurate physical print sizing. The default in this tool is 96 DPI.
What is the difference between PX and PT in CSS?
In CSS, px is a device-independent pixel mapped to the screen resolution, while pt is a physical typographic unit (1/72 inch). On a 96 DPI screen, 1pt = 1.333px. Both are absolute units in CSS — neither scales with user preferences the way REM or EM do.
Should I use PX or PT in my CSS?
Use PX for screen/web styles — it's the standard and most predictable unit for digital displays. Reserve PT for @media print stylesheets where physical measurements matter. For accessibility, prefer REM or EM over both for font sizes.
How do I convert PX to PT in CSS print media?
In a print stylesheet, replace your font-size: 16px with font-size: 12pt using the 0.75 multiplier. Most browsers handle this automatically, but explicit PT values in @media print blocks give you precise control over printed output.
What font sizes in PT correspond to common web font sizes?
Common mappings at 96 DPI: 10px = 7.5pt, 12px = 9pt, 14px = 10.5pt, 16px = 12pt, 18px = 13.5pt, 20px = 15pt, 24px = 18pt, 32px = 24pt, 48px = 36pt. The standard body text size of 16px converts to 12pt — the same as the default in most word processors.