使用Python图形模块:有没有办法将当前窗口保存为图像?

时间:2011-12-16 06:21:21

标签: python graphics

我正在使用python graphics模块。我想要做的是将当前窗口保存为图像。在模块中,有一个选项可以将“图像”保存为图像(image.save())。但这没有用,因为它只保存您已加载的图像。或者,如果你像我一样加载一个空白图像,希望它可以改变它,惊喜,惊喜:你得到了一张空白图片。这是我的代码:

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#####

所以这里又是我的问题:如何将屏幕上现在的内容保存为“blank.gif” 谢谢!

1 个答案:

答案 0 :(得分:1)

您正在绘制的对象基于Tkinter。我不相信你实际上是在绘制基本图像,而是简单地使用“图形”库创建Tkinter对象。我也不相信你可以将Tkinter保存到“gif”文件,虽然你绝对可以将它们保存为postscript格式,然后将它们转换为gif格式。

为了做到这一点,你需要python的PIL库。

如果您的所有对象实际上都是TKinter对象,则只需保存对象即可。

首先替换这行代码:

image.save("blank.gif")

以下内容:

# saves the current TKinter object in postscript format
win.postscript(file="image.eps", colormode='color')

# Convert from eps format to gif format using PIL
from PIL import Image as NewImage
img = NewImage.open("image.eps")
img.save("blank.gif", "gif")

如果您需要其他信息,请查看http://www.daniweb.com/software-development/python/code/216929 - 这是我获得建议代码的位置。

我确信有比保存/转换更优雅的解决方案,但由于我对TKinter了解不多 - 这是我找到的唯一方法。

希望它有所帮助!