im trying to load an image into the background of a tkinter gui but everything i try seems to not work and I always get the error:
TclError: image “pyimage13” doesn’t exist
this is my code atm
from tkinter import *
root = Tk()
root.geometry("400x400")
bg = PhotoImage(file = "C:/Users/khourym/Desktop/Projects/YOW/YOW1.29/ValidationGUI1.05/Logo_Full-Color.png")
lab=Label(root, image=bg)
lab.place(x=0,y=0, relwidth=1,relheight=1)
tex=Label()(root, text="wle")
tex.pack(pady=50)
root.mainloop()