I am trying to load a gif image into my tkinter GUI and I am using PhotoClass().Please note that I am not using any external modules such as PIL.I am using python 3.4. At first I tried a .png image,which is not supported natively.So I changed the image extension to .gif, which (I believe) is supported.
The image is first refrenced here:
img=tk.PhotoImage(file="Image.gif")
And is placed into a Label here:
ImageLabel=tk.Label(root, image=img,)
ImageLabel.grid(row=14,column=1)
The error I receive is:
_tkinter.TclError: couldn't recognize data in image file "Image.gif"
Any help would be greatly appreciated.