将 GraphWin 的内容导出到图像文件

Export the contents of a GraphWin to an image file

有没有可能我可以将在 GraphWin 中创建的 'image' 保存到文件中?什么类型的都无所谓,我只需要存储起来以供以后比较。

win = GraphWin("Test image", 500, 500)
c = Circle(Point(Items[i].x, Items[i].y), Items[i].z)
c.setFill(color)
c.draw(win)

是的,因为 GraphWin 是 Tkinter Canvas 的子类,你可以这样做:

from graphics import *

win = GraphWin("Test image", 500, 500)
c = Circle(Point(100, 100), 50)
c.setFill("green")
c.draw(win)

win.postscript(file = "graphic.eps")