如果运行下面的代码,则将使用“cambria Math”字体获得tm和gm结构的以下值:

tm.tmHeight = 161
tm.tmAscent = 90
tm.tmDescent = 71


gm.gmBlackBoxY = 14

tm中的值显然是错误的! gmBlackBoxY似乎是正确的。

现在,如果我使用
lfFaceName = "Arial"

我为tmgm获得了以下正确的值:
tm.tmHeight = 33
tm.tmAscent = 27
tm.tmDescent = 6


gm.gmBlackBoxY = 15

代码:
int iLogPixelsY;
iLogPixelsY = GetDeviceCaps(hdc,LOGPIXELSY);

LOGFONT lf;
int iPts;
iPts = 22;

memset(&lf, 0, sizeof(LOGFONT));

lf.lfHeight = -iPts * iLogPixelsY / 72;
lf.lfWeight = FW_NORMAL;
lf.lfItalic = 0;
lf.lfCharSet = 0;
lf.lfOutPrecision = OUT_TT_ONLY_PRECIS;

wcscpy(lf.lfFaceName, L"Cambria Math");
HFONT hFont;
hFont = CreateFontIndirect(&lf);
hFont = (HFONT)SelectObject(hdc, hFont);

TCHAR tx;
tx = 'a';

TEXTMETRIC tm;
GetTextMetrics(hdc, &tm);

GLYPHMETRICS gm;
GetGlyphOutline(hdc, tx, GGO_METRICS, &gm, 0, NULL, &gmat);

谁能解释为“Cambria Math”字体获取TEXTMETRIC结构时明显的错误吗?

最佳答案

代码中的错误不适用于获取TEXTMETRIC结构(不包括您在同一代码中使用TCHAR,CHAR和WCHAR函数和变量)。

tm.tmHeight == 161;
tm.tmAscent == 90;
tm.tmDescent == 71;
tm.tmInternalLeading == 132;

以上行没有任何错误!!!
tm.tmHeight == tm.tmAscent + tm.tmDescent;
tm.tmHeight == tm.tmInternalLeading + MulDiv(22,GetDeviceCaps(hdc,LOGPIXELSY),72);

“Cambria Math”是使用这些参数设计的!

转到链接http://www.ascenderfonts.com/font/cambria-regular.aspx将字体大小更改为22pt(或其他大小),然后查看字体“Cambria”和字体“Cambria Math”的上下边距之间的差异。

09-06 17:03