I want to put as the entire app background a custom image. I read somewhere that I have to do something like this:
root = Tk()
bg_image = PhotoImage(file="C:/Users/Matteo/Desktop/fisica.png")
app = App(root,image=bg_image)
root.title("Fisica")
root.geometry("330x470")
root.mainloop()
When I try to run the code, it says:
TypeError: init() got an unexpected keyword argument 'image'
I can't understand what's the problem