Re: Tkinter Images

2005-11-23 Thread Fredrik Lundh
"Tuvas" wrote: > Update: I can put the image in, but it spits out errors, adding this to > it: > > canvas.insert(pic) the "insert" method is used to insert text into canvas text items; the syntax is canvas.insert(tag, position, text) I'm not sure what you're saying here; did you get errors

Re: Tkinter Images

2005-11-23 Thread Tuvas
Update: I can put the image in, but it spits out errors, adding this to it: canvas.insert(pic) BTW, I noted that my code was written incorectly The function should be as follows: def change_pic(path): global pic image=Image() #I'm using PIL to use the images, but I don't think