# Object CanvasContext.measureText(string text)
测量文本尺寸信息。目前仅返回文本宽度。同步接口。
# 参数
# string text
要测量的文本
# 返回值
# Object
属性 | 类型 | 说明 |
---|---|---|
width | number | 文本的宽度 |
# 示例代码
const ctx = qa.createCanvasContext('myCanvas')
ctx.font = 'italic bold 20px cursive'
const metrics = ctx.measureText('Hello World')
console.log(metrics.width)
1
2
3
4
2
3
4
←
→
在线客服