I\'m trying to add a background image to a canvas in Python. So far the code looks like this:
from Tkinter import * from PIL import ImageTk,Image ... other
just change to :
image = Image.open("~~~path.png") backgroundImage=ImageTk.PhotoImage(image)
believe me this will 100% work