Zooming and Editing TkInter Images

2012-09-04 Thread jimbo1qaz
How do I zoom in on a tkinter image? And how do I change the selected pixel to a changeable color when the user clicks or drags? -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter Images

2005-11-23 Thread Fredrik Lundh
() #I'm using PIL to use the images, but I is that a PIL Image object or a Tkinter Image object? if you're using PIL, you need to use the ImageTk module to convert the PIL image to a format suitable for Tkinter. if you're using Tkinter images, you really want the P

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

Tkinter Images

2005-11-23 Thread Tuvas
I've been trying to use a canvas to display different pictures on a Tkinter interface. However, it doesn't seem to update the information. Ei, I have something like this. canvas=Canvas(master,blah...) canvas.pack() def change_pic(path): global pic image=Image() #I'm using PIL to