blockly >实用程序 >dom >getFastTextWidth

utils.dom.getFastTextWidth() 函数

使用比 getTextWidth 更快的方法获取文本元素的宽度。此方法要求我们事先知道文本元素的字体系列和大小。与 getTextWidth 类似,我们会缓存所计算的宽度。

Signature:

export declare function getFastTextWidth(textElement: SVGTextElement, fontSize: number, fontWeight: string, fontFamily: string): number;

参数

参数 类型 说明
textElement SVGTextElement SVG“文本”元素。
fontSize number 要使用的字体大小。
fontWeight 字符串 要使用的字体粗细。
fontFamily 字符串 要使用的字体系列。

返回

number

元素的宽度。