blockly >实用程序 >dom >measureFontMetrics
utils.dom.measureFontMetrics() 函数
衡量字体的指标。高度和基线值。
Signature:
export declare function measureFontMetrics(text: string, fontSize: string, fontWeight: string, fontFamily: string): {
height: number;
baseline: number;
};
参数
参数 | 类型 | 说明 |
---|---|---|
text | 字符串 | 要测量字体大小的文本。 |
fontSize | 字符串 | 要使用的字体大小。 |
fontWeight | 字符串 | 要使用的字体粗细。 |
fontFamily | 字符串 | 要使用的字体系列。 |
返回:
{ height: number;基准:数字;}
字体测量。