如何使用python2.7中的tk在GUI上显示图像?



如果可能的话,我需要离开能够在GUI形式中运行python代码时显示图像。我也必须在代码中输入文件夹名称和文件名,如果你知道答案,我试过pil,它所做的就是将图像保存到一个文件夹中,我想在gui

上这样做如果需要的话,

tk的代码

from Tkinter import *
root = Tk()
toolbar = Frame(root)
# All the buttons in my program
b = Button(toolbar, text="Home", width=9)
b.pack(side=LEFT, padx=2, pady=2)
b = Button(toolbar, text="About-us", width=9)
b.pack(side=LEFT, padx=2, pady=2)
b = Button(toolbar, text="Contact-us", width=9)
b.pack(side=LEFT, padx=2, pady=2)
b = Button(toolbar, text="Travelling", width=9)
b.pack(side=LEFT, padx=2, pady=2)

toolbar.pack(side=TOP, fill=X)
# All the labels in my program
o = Label(root,text="Frank Anne",font =("Italic",18,"bold"))
o.pack()
toolbar1 = Frame(root)
o=Label(root,)
o.pack()

o=Label(root,text ="Age:                     27")
o.pack()
o=Label(root,text ="Address:                 71 strawberry lane, JU8 8TY")
o.pack()
toolbar1.pack(side=BOTTOM, fill=X)




mainloop()

你好,如果你想在tk画布中显示图像,它需要是PPM/PGM或GIF:来自python.org的讨论

然而,如果你想加载PPM, PGM或GIF:

import Tkinter as tk
root = tk.Tk()
root.title("display a website image")
photo = tk.PhotoImage(file= r"C:SomeLocallocationsmile.gif")
cv = tk.Canvas()
cv.pack(side='top', fill='both', expand='yes')
cv.create_image(10, 10, image=photo, anchor='nw')
root.mainloop()

创建一个框架,使用tk加载图像。PhotoImage,然后创建一个画布,并将图像放到画布上。

如果我理解的话,您只是想使用Tkinter显示图像?

要做到这一点,您可以使用画布小部件填充您的图像。

下面是一个例子:

can = Canvas(window, width=160, height=160, bg='white')
pic = PhotoImage(file='picture.jpg')
item = can.create_image(80, 80, image=pic)

相关内容

  • 没有找到相关文章

最新更新