Hello i have problem with set background image i want set image in another window in tkinter (python) look at def matus()
can someone help me idk now anymore..
this is function for another window...
def matus():
matus = Tk()
matus.title("Nice WIndow")
matus.geometry("400x400")
canvas=Canvas(matus, width = 400, height = 400)
image=ImageTk.PhotoImage(Image.open("fotky/images.jpg"))
canvas.create_image(0,0,anchor=NW,image=image)
canvas.pack()