vote up 8 vote down star

When you select, for example, a Size of 8 in a Font Dialog for Microsoft Sans Serif, it returns a font that .NET displays as having a size 8.25?

Why is this exactly?

flag

25% accept rate

2 Answers

vote up 17 vote down check

A point is 1/72 of an inch, so the font should be 8/72 (0.111111) inches high. Windows assumes a standard display is 96 DPI, unless you take pains to configure it otherwise. That means it tries to create a font that's 10.66667 pixels high; it rounds to 11 pixels. When you convert that back to points ((11 / 96) * 72), it becomes 8.25.

link|flag
vote up 2 vote down

This is most likely due to the way the Windows Font Mapper calculates font sizes. There is a slight difference between pixel heights of font cells and normal "points" @ 1/72 of an inch.

More info here: http://msdn.microsoft.com/en-us/library/ms969909.aspx

link|flag

Your Answer

Get an OpenID
or

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