如何查找 context.fillText(text, x, y) 的尺寸
我正在画布上绘制文本,想知道如何获得要绘制的文本的尺寸。
高度应该足够简单。
我唯一的想法是使用等宽字体,并根据字符数计算长度。还有更好的方法吗?
I am drawing text on a canvas and was wondering how I can get the dimensions of the text to be drawn.
Height should be simple enough.
My only thought is that to use a monospace font, and calculate the length from the number of characters. Is there a better way to do this yet?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您读过这个使用canvas绘制文本文档吗?
特别是来自方法部分;
measureText() 方法似乎可以满足您的要求。
尽管文档中没有示例,但我猜测其用途如下:
Have you read this drawing text using canvas documentation?
Especially from the methods section;
The measureText() method seems to do what you ask.
Although there is no example at the documentation I'm guessing the use is something like: