I know it is possible to embed an image in a Tkinter text widget, but I’ve been unable to find some simple example code.
Specifically, I need to embed a jpg, so according to the docs I think I need to use the photoimage class
I tried to use this:
img=PhotoImage ( file=imgfn )
text.image_create(image=img)
where imgfn is the image filename, and text is my text widget,
but I get “_tkinter.TclError: couldn’t recognize data in image file …”
thanks for any help!
PhotoImageonly handlesGIFandPGM/PPMfiles. In order to useJPEGwith Tkinter, you can use the Python Imaging Library (PIL) to create aPhotoImage.Alternatively you could just one of the other supported formats for
PhotoImageif possible.