On Thu, 1 Jul 1999, Travis Oliphant wrote:
>
>
> Yes, it gets to the canvas.root().add() call because if I don't include
> that line the script works as expected. Any ideas?
You may need to specify the size of image in 'add' call.
So change
theim = canvas.root().add('image',x=10,y=20,image=im._im)
to
theim = canvas.root().add('image',
width=im.rgb_width, height=im.rgb_height, x=10,y=20,image=im._im)
To unsubscribe: echo "unsubscribe" | mail [EMAIL PROTECTED]
- [pygtk] How do I display an image on a Gnome Canvas? Travis Oliphant
- Re: [pygtk] How do I display an image on a Gnome Can... James Henstridge
- Re: [pygtk] How do I display an image on a Gnome Can... J.W. Bizzaro
- Re: [pygtk] How do I display an image on a Gnome Can... Travis Oliphant
- Re: [pygtk] How do I display an image on a Gnome Can... Chi-Deok Hwang
- Re: [pygtk] How do I display an image on a Gnome... Travis Oliphant
