我正在使用pythongraphics模块。我要做的是将当前窗口保存为图像。在模块中,有一个选项可以将“图像”另存为图像(图像.保存()). 但这并没有帮助,因为它只是保存一个已经加载的图像。或者,如果你像我一样加载一个空白图像,希望在上面画画可以改变这一点,惊喜,惊喜:你得到了一个空白图像保存。这是我的代码:from graphics import *
w = 300
h = 300
anchorpoint=Point(150,150)
height=300
width=300
image=Image(anchorpoint, height, width) #creates a blank image in the background
win = GraphWin("Red Circle", w, h)
# circle needs center x, y coordinates and radius
center = Point(150, 150)
radius = 80
circle = Circle(center, radius)
circle.setFill('red')
circle.setWidth(2)
circle.draw(win)
point= circle.getCenter()
print point
pointx= point.getX()
pointy= point.getY()
print pointx
print pointy
findPixel=image.getPixel(150,150)
print findPixel
image.save("blank.gif")
# wait, click mouse to go on/exit
win.getMouse()
win.close()
#######that's it#####
所以我的问题又来了:如何将屏幕上的内容保存为“空白.gif"
谢谢!在