python tkinter 插入图片
时间: 2023-04-25 22:06:16 浏览: 740
详解python tkinter 图片插入问题
使用 tkinter 在窗口中插入图片可以使用 PhotoImage 类。示例代码如下:
```
from tkinter import *
root = Tk()
photo = PhotoImage(file="image.png")
label = Label(root, image=photo)
label.pack()
root.mainloop()
```
其中, "image.png" 是要插入的图片文件的路径, PhotoImage 类读取该文件并创建一个 PhotoImage 对象。然后使用 Label 类将图片放入窗口中,最后使用 pack() 方法调整图片的大小和位置。
阅读全文