如何在ttk.notebook选项卡的tab上设置图像?

以下代码不起作用,图像不显示:

import tkinter as tk
from tkinter import ttk

class Tab(tk.Frame):
    def __init__(self, master, *args, **kwargs):
        super().__init__(master, *args, **kwargs)
        self.label = tk.Label(self, text='Blablablee')
        self.label.pack()

root = tk.Tk()
notebook = ttk.Notebook(root)
notebook.pack()
notebook.add(Tab(notebook),
             text='Tab1',
             image=tk.PhotoImage(file='icon.png'),
             compound='left')
root.mainloop()

最佳答案

作为一个完整的例子:

import tkinter as tk # global imports are bad
from tkinter import ttk
from PIL import Image, ImageTk

root = tk.Tk()
nb = ttk.Notebook(root)
nb.pack(fill='both', expand=True)

f = tk.Frame(nb)
tk.Label(f, text="in frame").pack()

# must keep a global reference to these two
im = Image.open('path/to/image')
ph = ImageTk.PhotoImage(im)

# note use of the PhotoImage rather than the Image
nb.add(f, text="profile", image=ph, compound=tk.TOP) # use the tk constants

root.mainloop()


作为参考,我测试了它是否可以与gif文件一起使用,其中内置的PhotoImage失败了,并且gif是受支持的格式之一。

关于python - Python,如何将图像设置为ttk.notebook选项卡,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50444889/

10-12 20:59