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?
|
|
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". |
||||||||||||
|
|
|
Starting with the given:
If you want to find points (pt) based on pixels (px):
Rearranging:
so:
|
||
|
|
|
|
Try this if your code lies in a form:
|
||
|
|
|
|
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 |
||
|
|
|
|
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%). |
|||
|
|
|
|
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. |
||||||||
|
