您正在将苹果与橙子进行比较。这一行:
if mousePt <= xValue and mousePt <= yValue:
与说的大致相同:
if Point(123, 45) <= 64 and Point(123, 45) <= 64:
将点与宽度和高度进行比较是没有意义的。您需要将宽度和高度与图像的中心位置结合起来,并从鼠标位置提取 X 和 Y 值:
from graphics import *
win = GraphWin("Image Button", 400, 400)
imageCenter = Point(200, 200)
# 64 x 64 GIF image from http://www.iconsdb.com/icon-sets/web-2-green-icons/video-play-icon.html
startImage = Image(imageCenter, "video-play-64.gif")
startImage.draw(win)
imageWidth = startImage.getWidth()
imageHeight = startImage.getHeight()
imageLeft, imageRight = imageCenter.getX() - imageWidth/2, imageCenter.getX() + imageWidth/2
imageBottom, imageTop = imageCenter.getY() - imageHeight/2, imageCenter.getY() + imageHeight/2
start = False
while not start:
# Obtain mouse Point(x, y) value
mousePt = win.getMouse()
# Test if x,y is inside image
x, y = mousePt.getX(), mousePt.getY()
if imageLeft < x < imageRight and imageBottom < y < imageTop:
print("Bullseye!")
break
win.close()
这个特殊的图标显示为一个圆圈,您可以单击的区域包括其矩形边界框,其中一些在圆圈之外。可以将点击限制为完全可见的图像,但这需要更多的工作。