PT to PX Converter
PT
What is Pt to Px Converter?
Pt stands for Points, and Px stands for pixels. The Points to Pixels converter is a free online tool that instantly converts Pt values into px. This calculator is widely popular and used by most print designers.
You can also try px to pt too on our website.
How do you use the Points to Pixels Tool?
Here are two simple steps to use this tool and get results online:
Step 1: Input the points value(pt) you want to convert.
Step 2: Now press the convert button and get your results in pixels.

Points to Pixels Conversion Table
The table below contains some frequently needed conversions from points to pixels. Thus, you can use this table as a quick reference. Moreover, you can check this value by using the above converter to confirm your results.
PT | PX |
---|---|
0.75pt | 1px |
1.5pt | 2px |
3pt | 4px |
6pt | 8px |
7.5pt | 10px |
9pt | 12px |
10.5pt | 14px |
12pt | 16px |
13.5pt | 18px |
15pt | 20px |
18pt | 24px |
24pt | 32px |
48pt | 64px |
75pt | 100px |
150pt | 200px |
187.5pt | 250px |
225pt | 300px |
300pt | 400px |
450pt | 600px |
600pt | 800px |
675pt | 900px |
768pt | 1024px |
900pt | 1200px |
1200pt | 1600px |
Formula for Points to Pixels Conversion
According to the World Wide Web Consortium (W3C), there is no direct formula to convert the pt to px. But we can derive it from their relationship with inches. As we know that:
1 inch = 72pt
1 Inch = 96px
In other words,
96px = 72pt
So, if we derive a formula from the above equation, then it will become:
1px = 72pt/96
So the final formula becomes,
Px = pt * (72pt/96)
Few Valuable Examples About PT
Below are few examples about pt usage in various scenarios:
Example 1: Setting Font Size (Less Common)
Scenario: You want a specific font size, and you’re thinking in terms of print measurements.
CSS:
p {
font-size: 12pt;
}
Explanation: This sets the paragraph’s font size to 12 points. However, pt units are pure absolute, like pixels. They don’t really scale with user preferences in the browser. This can make them problematic for accessibility and usability.
Try pixels to inches for free on pixelsconverters.com to get accurate conversions.
Example 2: Setting Print Styles (Rarely Needed)
Scenario: You’re creating print-specific styles for a webpage (using @media print), and you want to use a unit that’s familiar from print design.
CSS:
@media print {
body {
font-size: 10pt; /* Could be used in print styles */
}
}
Explanation: In this very specific scenario, pt might be used within a @media print rule. Since print layouts are often fixed and not intended to be scaled by the user, the accessibility concerns are less relevant.