HTML canvas measureText()方法
Canvas 对象的 measureText() 方法返回一个对象,该对象包含以像素计的指定字体宽度
如果需要在文本向画布输出之前,就了解文本的宽度,那么请使用该方法
语法
context.measureText(text).width
参数值
参数 | 描述 |
---|---|
text | 要测量的文本 |
浏览器支持
Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 measureText() 方法
Internet Explorer 8 及之前的版本不支持 <canvas> 元素
范例
在画布上输出文本之前,检查字体的宽度
var c=document.getElementById("canvas-1"); var ctx=c.getContext("2d"); ctx.font="30px Arial"; var txt="Hello World"; ctx.fillText("width:" + ctx.measureText(txt).width,10,50) ctx.fillText(txt,10,100);