导入.gif的最简单代码

时间:2015-04-07 01:17:47

标签: python python-3.x tkinter

我正在寻找最简单的代码来在我的程序中运行.gif文件。该文件名为" vault_ext.gif"。到目前为止,我有:

from tkinter import *

def vault():
    photo = PhotoImage(file="vault_ext.gif")

vault()

1 个答案:

答案 0 :(得分:2)

>>> import tkinter as tk
>>> root = tk.Tk()
>>> w = 500 # replace 500 with the width of your photo
>>> h = 600 # replace 600 with the height of your photo
>>> canvas = tk.Canvas(root, width=w, height=h)
>>> canvas.pack()
>>> img = tk.PhotoImage(file='vault_ext.gif')
>>> img_ref = canvas.create_image(w//2, h//2, image=img)

这是获取图像的基本方式。我建议查找使用类的tkinter应用程序的示例,以便您可以更轻松地实现交互性。 Effbot's tkinterbook是一个很好的资源。

让我们添加一个绑定:

>>> def printer(event):
...     print(event.x, event.y)
...
>>> canvas.bind("<Button-1>", printer)

每当您左键单击图片时,它会打印您单击的位置的x,y坐标(坐标从左上角开始)。