如果可能的話,我需要在能夠以gui形式運行python代碼時顯示圖像。我也必須在代碼中輸入文件夾名稱和文件名如果你知道答案我試過pil所有它所做的就是將圖像保存到一個文件夾中我想要這個在gui上如何在python2.7上使用tk顯示gui上的圖像
代碼爲tk if這是必要的
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()
您不需要使用畫布;你也可以使用標籤小部件。 – 2013-05-09 17:41:13
我認爲這是做到「最乾淨」的方式。 – gaetanm 2013-07-18 10:36:53
我的觀點是,要求某人以某種方式做某事意味着這是唯一的方式,但在這種情況下,這不是唯一的方法。 – 2013-07-18 10:44:26