vote up 4 vote down star
2

I have a need to convert Pixels to Points in C#. I've seen some complicated explanations about the topic, but can't seem to locate a simple formula. Let's assume a standard 96dpi, how do I calulate this conversion?

flag

6 Answers

vote up 9 vote down check

There are 72 points per inch; if it is sufficient to assume 96 pixels per inch, the formula is rather simple:

points = pixels * 72 / 96

There is a way to get the configured pixels per inch of your display, but it escapes me at the moment.

Edit: The function I was thinking of is GetDeviceCaps. Microsoft has a guide called "Developing DPI-Aware Applications", look for the section "Creating DPI-Aware Fonts".

link|flag
You can't say 72 ppi is a constant. It's depending on the display itself. – VVS Sep 26 '08 at 14:11
1  
72 Points Per inch is NOT an arguable item, it is the same across the board! – Mitchel Sellers Sep 26 '08 at 14:20
@David dpi is dependent on the display, ppi is a typographic constant – Corey Ross Sep 26 '08 at 14:21
I don't think so: retouchpro.com/forums/archive/… – VVS Sep 26 '08 at 14:28
@David that article just explains why monitors have variable DPI. PPI is still the same. The number of kilometers in a mile doesn't change depending on the car you drive. Assuming 96dpi is generally not a good idea, but if we do that then the given formula is correct. – David Dorward Sep 26 '08 at 14:39
show 1 more comment
vote up 0 vote down

Starting with the given:

  • There are 72 points in an inch (that is what a point is, 1/72 of an inch)
  • on a system set for 150dpi, there are 150 pixels per inch.
  • 1 in = 72pt = 150px (for 150dpi setting)

If you want to find points (pt) based on pixels (px):

 72 pt    x pt
------ = -----                  (1) for 150dpi system
150dpi    y px

Rearranging:

x = (y/150) * 72                (2) for 150dpi system

so:

points = (pixels / 150) * 72    (3) for 150dpi system
link|flag
vote up 2 vote down

Try this if your code lies in a form:

Graphics g = this.CreateGraphics();
points = pixels * 72 / g.DpiX;
g.Dispose();
link|flag
vote up 1 vote down

System.Drawing.Graphics has DpiX and DpiY properties. DpiX is pixels per inch horizontally. DpiY is pixels per inch vertically. Use those to convert from points (72 points per inch) to pixels.

Ex: 14 horizontal points = (14 * DpiX) / 72 pixels

link|flag
vote up 5 vote down

Assuming 96dpi is a huge mistake. Even if the assumption is right, there's also an option to scale fonts. So a font set for 10pts may actually be shown as if it's 12.5pt (125%).

link|flag
vote up 0 vote down

Surely this whole question should be:

"How do I obtain the horizontal and vertical PPI (Pixels Per Inch) of the monitor?"

There are 72 points in an inch (by definition, a "point" is defined as 1/72nd of an inch, likewise a "pica" is defined as 1/72nd of a foot). With these two bits of information you can convert from px to pt and back very easily.

link|flag
To make it even more complicated, I'm dealing with aligning things on a an Reporting Services (RDL) report which is being converted into a PDF. At the end of the day, who the heck knows what the DPI is? I'm using my best guess. :) – Todd Davis Sep 26 '08 at 14:38
You mean "How do I obtain the horizontal and vertical DPI of the monitor?". PPI is a constant of 72. Always has been and always will. – Xetius Jul 3 at 12:14
Pixels Per Inch, not Points Per Inch (Pica). – JeeBee Jul 3 at 13:43
Um, oops, not Pica! That's 1/6th of an inch. Points Per Inch is redundant, the term is "Points". A "Point" is 1/72nd of an Inch. – JeeBee Jul 3 at 13:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.