我很難在使用tkinter的畫布上顯示圖像。我相信問題是由於我不正確地加載圖像而引起的。下面是我正在努力工作的代碼。 「file ='Users/ramos1992/Desktop/test_image.gif'」是我從桌面加載圖像的嘗試。Mac Python 3.4.4,導入文件/圖像,tkinter
from tkinter import *
tk = Tk()
canvas = Canvas(tk, width=400, height=400)
canvas.pack()
my_image = PhotoImage(file='Users/ramos1992/Desktop/test_image.gif')
canvas.create_image(0, 0, anchor=NW, image=my_image)
mainloop()
什麼是使用Mac加載文件的正確方法,以及如何使代碼工作?
離開'/用戶'只是一個錯字,或者你不明白它們的區別嗎? – abarnert