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 the code from the documentation:
canv = Canvas(root, width=80, height=80, bg='white')
canv.grid(row=2, column=3)
img = PhotoImage(file="bll.jpg")
canv.create_image(20,20, anchor=NW, image=img)
Same thing with png images. Even tried to put an image into a label widget, but got the same error. What’s wrong?
I am using Python 3 on Mac. Python file and image are in the same folder.
Kenil Vasani
Your code seems right, this is running for me on Windows 7 (Python 3.6):
resulting in this tkinter GUI:
bll.jpg
:(imgur converted it to
bll.png
but this is working for me as well.)More options:
gif
images. Try using a.gif
image.PIL
as stated in this answer.Update: Solution with
PIL
: