I'm having an issue displaying images in tkinter, I've tried the methods suggested by effbot and a couple other sources to no avail. Here are a couple ways I've tried so far:
gmail=PhotoImage('gmail.gif')
self.glab=Label(self,image='gmail.gif')
self.glab.image=gmail
self.glab.grid(row=3,column=4)
gmail=PhotoImage('gmail.gif')
self.glab=Label(self,image=gmail)
self.glab.image=gmail
self.glab.grid(row=3,column=4)
self.glabim=PhotoImage('gmail.gif')
self.glab=Label(self,image=self.glabim)
self.glab.grid(row=3,column=4)
gmail=PhotoImage('gmail.gif')
self.lab=Label(self,image=gmail)
self.lab.image=gmail
self.lab.pack()
the last one actually froze the program completely, it wouldn't run. I'm sure the images are in the correct directory.