如何查找 context.fillText(text, x, y) 的尺寸

发布于 2024-10-12 02:31:16 字数 96 浏览 1 评论 0原文

我正在画布上绘制文本,想知道如何获得要绘制的文本的尺寸。

高度应该足够简单。

我唯一的想法是使用等宽字体,并根据字符数计算长度。还有更好的方法吗?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花想c 2024-10-19 02:31:16

您读过这个使用canvas绘制文本文档吗?
特别是来自方法部分
measureText() 方法似乎可以满足您的要求。

尽管文档中没有示例,但我猜测其用途如下:

var text = 'this is my text';
var text_ctx = ctx.measureText(text);
var text_width = text_ctx.width;

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:

var text = 'this is my text';
var text_ctx = ctx.measureText(text);
var text_width = text_ctx.width;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文