0

我有一个开始按钮图像,我正试图在我的程序中将其变成一个按钮。但是,我相信我做错了数学或显然是错误的,因为它不起作用。基本上,我想做的是如果该人点击按钮,它将启动一个 if 语句。有任何想法吗?提前致谢!

    #Assigning Mouse x,y Values
mousePt = win.getMouse()
xValue = startImage.getHeight()
yValue = startImage.getWidth()

#Assigning Buttons
if mousePt <= xValue and mousePt <= yValue:
    hour = 2

startImage 是我要制作按钮的图像。小时是在其他代码中声明的变量。

4

1 回答 1

0

您正在将苹果与橙子进行比较。这一行:

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()

这个特殊的图标显示为一个圆圈,您可以单击的区域包括其矩形边界框,其中一些在圆圈之外。可以将点击限制为完全可见的图像,但这需要更多的工作。

于 2017-01-13T20:42:43.383 回答