TEXTMETRIC 结构详解
TEXTMETRIC 結構詳解
函數GetTextMetrics可以獲取一個字體文本度量并將它放入一個類型為TEXTMETRIC的數據結構中,該結構如下所示:
?
?
typedef struct ta
?
TEXTMETRIC
The TEXTMETRIC structure contains basic information about a physical font. All sizes are specified in logical units; that is, they depend on the current mapping mode of the display context.
typedef struct tagTEXTMETRIC {?
? LONG tmHeight;?
? LONG tmAscent;?
? LONG tmDescent;?
? LONG tmInternalLeading;?
? LONG tmExternalLeading;?
? LONG tmAveCharWidth;?
? LONG tmMaxCharWidth;?
? LONG tmWeight;?
? LONG tmOverhang;?
? LONG tmDigitizedAspectX;?
? LONG tmDigitizedAspectY;?
? TCHAR tmFirstChar;?
? TCHAR tmLastChar;?
? TCHAR tmDefaultChar;?
? TCHAR tmBreakChar;?
? BYTE tmItalic;?
? BYTE tmUnderlined;?
? BYTE tmStruckOut;?
? BYTE tmPitchAndFamily;?
? BYTE tmCharSet;?
} TEXTMETRIC, *PTEXTMETRIC; Members
tmHeight?
Specifies the height (ascent + descent) of characters.?
tmAscent?
Specifies the ascent (units above the base line) of characters.?
tmDescent?
Specifies the descent (units below the base line) of characters.?
tmInternalLeading?
Specifies the amount of leading (space) inside the bounds set by the tmHeight member. Accent marks and other diacritical characters may occur in this area. The designer may set this member to zero.?
tmExternalLeading?
Specifies the amount of extra leading (space) that the application adds between rows. Since this area is outside the font, it contains no marks and is not altered by text output calls in either OPAQUE or TRANSPARENT mode. The designer may set this member to zero.?
tmAveCharWidth?
Specifies the average width of characters in the font (generally defined as the width of the letter x). This value does not include the overhang required for bold or italic characters.?
tmMaxCharWidth?
Specifies the width of the widest character in the font.?
tmWeight?
Specifies the weight of the font.?
tmOverhang?
Specifies the extra width per string that may be added to some synthesized fonts. When synthesizing some attributes, such as bold or italic, graphics device interface (GDI) or a device may have to add width to a string on both a per-character and per-string basis. For example, GDI makes a string bold by expanding the spacing of each character and overstriking by an offset value; it italicizes a font by shearing the string. In either case, there is an overhang past the basic string. For bold strings, the overhang is the distance by which the overstrike is offset. For italic strings, the overhang is the amount the top of the font is sheared past the bottom of the font.?
The tmOverhang member enables the application to determine how much of the character width returned by a GetTextExtentPoint32 function call on a single character is the actual character width and how much is the per-string extra width. The actual width is the extent minus the overhang.
tmDigitizedAspectX?
Specifies the horizontal aspect of the device for which the font was designed.?
tmDigitizedAspectY?
Specifies the vertical aspect of the device for which the font was designed. The ratio of the tmDigitizedAspectX and tmDigitizedAspectY members is the aspect ratio of the device for which the font was designed.?
tmFirstChar?
Specifies the value of the first character defined in the font.?
tmLastChar?
Specifies the value of the last character defined in the font.?
tmDefaultChar?
Specifies the value of the character to be substituted for characters not in the font.?
tmBreakChar?
Specifies the value of the character that will be used to define word breaks for text justification.?
tmItalic?
Specifies an italic font if it is nonzero.?
tmUnderlined?
Specifies an underlined font if it is nonzero.?
tmStruckOut?
Specifies a strikeout font if it is nonzero.?
tmPitchAndFamily?
Specifies information about the pitch, the technology, and the family of a physical font.?
The four low-order bits of this member specify information about the pitch and the technology of the font. A constant is defined for each of the four bits.
gTEXTMETRIC { // tm?
??? LONG tmHeight;????????????????? //字符高度
??? LONG tmAscent;????????????????? //字符上部高度(基線以上)
??? LONG tmDescent;???????????????? //字符下部高度(基線以下)
??? LONG tmInternalLeading;???????? //由tmHeight定義的字符高度的頂部空間數目
??? LONG tmExternalLeading;???????? //加在兩行之間的空間數目
??? LONG tmAveCharWidth;??????????? //平均字符寬度
??? LONG tmMaxCharWidth;??????????? //最寬字符的寬度
??? LONG tmWeight;????????????????? //字體的粗細輕重程度
??? LONG tmOverhang;??????????????? //加入某些拼接字體上的附加高度
??? LONG tmDigitizedAspectX;??????? //字體設計所針對的設備水平方向
??? LONG tmDigitizedAspectY;??????? //字體設計所針對的設備垂直方向
??? BCHAR tmFirstChar;????????????? //為字體定義的第一個字符
??? BCHAR tmLastChar;?????????????? //為字體定義的最后一個字符
??? BCHAR tmDefaultChar;??????????? //字體中所沒有字符的替代字符
??? BCHAR tmBreakChar;????????????? //用于拆字的字符
??? BYTE tmItalic;????????????????? //字體為斜體時非零
??? BYTE tmUnderlined;????????????? //字體為下劃線時非零
??? BYTE tmStruckOut;?????????????? //字體被刪去時非零
??? BYTE tmPitchAndFamily;????????? //字體間距(低4位)和族(高4位)
??? BYTE tmCharSet;???????????????? //字體的字符集
} TEXTMETRIC;
?
?
轉載于:https://www.cnblogs.com/songtzu/p/3539782.html
總結
以上是生活随笔為你收集整理的TEXTMETRIC 结构详解的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 如何分析apache日志[access_
- 下一篇: 静态连接库、动态链接库