如何在 tkinter 中找到 Canvas 文本对象的大小?

发布于 2024-07-06 00:02:20 字数 150 浏览 9 评论 0 原文

我想在画布中创建一些文本:

myText = self.canvas.create_text(5, 5, anchor=NW, text="TEST")

现在如何找到 myText 的宽度和高度?

I want to create some text in a canvas:

myText = self.canvas.create_text(5, 5, anchor=NW, text="TEST")

Now how do I find the width and height of myText?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

暖树树初阳… 2024-07-13 00:02:20
bounds = self.canvas.bbox(myText)  # returns a tuple like (x1, y1, x2, y2)
width = bounds[2] - bounds[0]
height = bounds[3] - bounds[1]

请参阅 TkInter 参考

bounds = self.canvas.bbox(myText)  # returns a tuple like (x1, y1, x2, y2)
width = bounds[2] - bounds[0]
height = bounds[3] - bounds[1]

See the TkInter reference.

护你周全 2024-07-13 00:02:20

如果您感兴趣的是正在考虑的画布的宽度和高度,使用框的边界,然后检查差异,那么这种方法似乎效果很好,如果您想这样做的话,效果也一样。

width = myText.winfo_width()  
height = myText.winfo_height()

This method seemed to work well if all you are interested in is the width and height of the canvas being considered, using the bounds of the box and then checking the differential works just as well if you want to do it that way.

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