标签: python-3.x tkinter tkinter-canvas
计算图像的尺寸然后将其减半并在每次我想检查某些东西是否重叠时添加它都是相当繁琐的。
答案 0 :(得分:1)
您可能想要使用bbox。
bbox
这个'returns the bounding box for all matching items',即你要获得坐标的图片的矩形轮廓。
coords = canvas.bbox(item)
或
coords = canvas.bbox("itemtag")
如果多个项目具有相同的标记,则它将使用给定该标记的第一个项目。