如何使用Tkinter在Python 3.2中顯示圖像? PIL不起作用,所以不使用它。在Tkinter中爲python顯示圖像3.2
0
A
回答
4
使用Tkinter PhotoImage
類創建圖像對象,然後將該對象分配給Label
小部件的image
屬性。
欲瞭解更多信息,請參閱http://effbot.org/tkinterbook/photoimage.htm
0
這是非常簡單的:
photo = PhotoImage(file="C:\pictures\pic1.gif")
label = Label(image=photo)
label.pack()
0
試試這個(對於Python 3)
from tkinter import PhotoImage
photo = PhotoImage(file="/home/pi/pile.gif")
lb=tkinter.Label(root,image = photo)
lb.grid(row=4, column=1)
相關問題
- 1. Python Tkinter - 圖像不顯示
- 2. python tkinter圖像顯示
- 3. Tkinter顯示圖像
- 4. Python tkinter不顯示gif圖像並顯示爲PhotoImage.1
- 5. 我不在Tkinter中顯示圖像
- 6. 圖像未顯示在Tkinter窗口中
- 7. Tkinter不在目錄中顯示圖像
- 8. Python Tkinter圖片顯示
- 9. Tkinter的不顯示圖像
- 10. Tkinter不顯示圖像
- 11. Tkinter - 圖像不顯示
- 12. 如何在python tkinter中顯示已調整大小的圖像
- 13. Python 3 tkinter圖像顯示在錯誤的列中
- 14. 如何使用tkinter/ttk在Python 3中顯示圖像?
- 15. 如何在Python中使用tkinter顯示圖像?
- 16. 在Tkinter中顯示來自網頁的圖像[Python 2.7]
- 17. 使用Tkinter畫布在Python中循環顯示圖像
- 18. 在Python中顯示多個圖像Tkinter按順序
- 19. 的Python 3.2 Tkinter的創建成果框架中顯示輸出
- 20. python 3.2 tkinter,單選按鈕中的文本不顯示
- 21. Python tkinter圖像
- 22. tkinter畫布圖像不顯示在類
- 23. Tkinter安裝在Python 3.2版本中
- 24. 爲什麼Tkinter圖像在功能中創建時不顯示?
- 25. 顯示字典在Tkinter Python
- 26. Tkinter的overrideredirect()行爲奇怪(Python 3.2,Win7)
- 27. python 3 tkinter圖像
- 28. Python顯示圖像
- 29. Python圖像顯示
- 30. python tkinter在windows中顯示時間
能否請你告訴我一個例子?我只需要一個帶有基本圖像的窗口和一個標籤。該圖像位於相同的目錄中,並命名爲image.gif。感謝 – user1402362
Nvm,讓它工作。謝謝! – user1402362