如何在 tkinter 中找到 Canvas 文本对象的大小?
我想在画布中创建一些文本:
myText = self.canvas.create_text(5, 5, anchor=NW, text="TEST")
现在如何找到 myText
的宽度和高度?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅 TkInter 参考。
See the TkInter reference.
如果您感兴趣的是正在考虑的画布的宽度和高度,使用框的边界,然后检查差异,那么这种方法似乎效果很好,如果您想这样做的话,效果也一样。
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.