I want to put the image for background.My code follows..
import PIL
from PIL import ImageTk
from PIL import Image
import PIL.Image
class App(tk.Tk):
def __init__(self):
super().__init__()
self.withdraw()
self.root1 = Tk()
self.root1.geometry('800x690')
self.root1.title('tkinter')
img =PIL.Image.open('4.jpg')
bg = ImageTk.PhotoImage(img)
# Add image
label = Label(self.root1, image=bg)
label.place(x = 0,y = 0)
The error is: "_tkinter.TclError: image "pyimage1" doesn't exist". How can I set background image?
Another way is to remove
super().__init__()
, so you can useself.root1
.Add
self.root1.mainloop()
snippet: