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]

Reply via email to