I\'m trying to put a jpg image to a tkinter canvas. tkinter gives me this error:
couldn\'t recognize data in image file
I use th
Another alternative solution to the list...
filename = ImageTk.PhotoImage(Image.open('imagename.jpeg' )) background_label = tk.Label(self.root, image=filename) background_label.place(x=0, y=0, relwidth=1, relheight=1)