Converting LogFont height to Font size in points

11,678

Solution 1

When the mapping mode is mm_Text (which it usually is), and when the lfHeight field is positive, it already gives the height in points. When it's negative, the units are pixels. MSDN for LogFont gives you the formula to convert between them:

lfHeight = -MulDiv(PointSize, GetDeviceCaps(hDC, LOGPIXELSY), 72);

There are 72 points per inch. GetDeviceCaps tells you the number of pixels per inch on a given device. Invert the formula to get pixels from points:

PointSize := MulDiv(-lfHeight, 72, GetDeviceCaps(hDC, LogPixelsY);

The important thing to realize here is that you need a device context. Font sizes don't exist independently of the media they appear on. The pixel height of a font on the screen will be different from the pixel height of a font on a printer. Use the Handle property of whatever canvas you're planning on drawing to.

Solution 2

I find this a bit confusing, as well. Here are a few things that I háve learned. ;)

  1. Examine the two low-order bits of lfPitchAndFamily to determine the font type.
  2. For fixed-pitch fonts, use GetTextMetrics and the TEXTMETRIC structure.
  3. For variable-pitch fonts (true-type, etc), use GetOutlineTextMetrics and the OUTLINETEXTMETRIC structure. Be sure you have the structure aligned properly. Also, the structure is variable-sized. Call the function once to get the size, allocate space, then call the function again to fill the structure.
  4. From there, you can find proper ascent, descent, and other size-related information.

Keep in mind that they are recommended values and not all display routines will use them properly. For example, I am in the process of figuring out a correct method of determining the required height of a dialog box static control for a given string of text. It does not appear that Microsoft has followed their own documentation. ;) Not that the documentation is all that clear or complete, to begin with.

Share:
11,678

Related videos on Youtube

Bharat
Author by

Bharat

Delphi developer since 2008

Updated on June 04, 2022

Comments

  • Bharat
    Bharat almost 2 years

    I have a LOGFONT structure. Now all i'd like to do is get the associated font size in points from the LOGFONT height.

  • Sertac Akyuz
    Sertac Akyuz almost 14 years
    > "when the lfHeight field is positive" - Then the font mapper provides a match for the cell height, which is character height + internal leading. To get the point size, one have to subtract internal leading from (cell) height and proceed as above.
  • Sertac Akyuz
    Sertac Akyuz almost 14 years
    I think my first comment is somehow vague and somehow misleading. Vague wouldn't be if said; "lfHeight" is always in pixels, the only difference is when positive it's the full cell height, and when negative its absolute value is character height. Misleading wouldn't be if said; since a LOGFONT structure has no "internal leading" information there's no way to calculate the point size with a positive lfHeight. One have to select the font to a DC then use GetTextMetrics, and then character height is tmHeight-tmInternalLeading.