使用PIL或枕头绘制图像并使用TKinter显示

时间:2015-01-10 14:45:05

标签: python tkinter python-imaging-library pillow tkinter-canvas

我想以编程方式绘制图像。基本上我说的是将每个像素设置为图像的地图,我想使用PIL /枕头来做到这一点。然后,我想在屏幕上显示它。 GUI基于TKinter。

root = Tk()
root.wm_title("Lands - A world generator")
root.resizable(0,0)

prepare_menu()

canvas = Canvas(root, width=canvas_width, height=canvas_height)
canvas.pack()

root.mainloop()

prepare_menu设置菜单并将一个条目与事件处理程序相关联,事件处理程序调用函数show_elevation_map,如下所示:

def show_elevation_map(p, width, height):    
    hm = platec.get_heightmap(p)
    img = PIL.Image.new('RGBA', (width, height))
    pixels = img.load()
    for y in range(0, height):
        for x in range(0, width):            
            pixels[x, y] = (255, 0, 0, 255)
    pi = ImageTk.PhotoImage(img)
    sprite = canvas.create_image(100, 100, image=pi)
    canvas.update()

我试过这样的,但我在屏幕上看不到任何东西,而我希望看到一切都是红色的。我在这里做错了什么?

感谢。

1 个答案:

答案 0 :(得分:2)

您的图片可能会被垃圾收集。您需要保存对图像的持久引用。