Fwd: [pygtk] Image rendering

2005-06-06 Thread Chris Lambacher
Sorry, reply to all is not the default in gmail. -Chris -- Forwarded message -- From: Chris Lambacher <[EMAIL PROTECTED]> Date: Jun 6, 2005 2:10 PM Subject: Re: [pygtk] Image rendering To: Prash <[EMAIL PROTECTED]> gtk.gdk.PixbufLoader looks like it will do what yo

Re: [pygtk] Image rendering

2005-06-06 Thread Prash
Sorry I didn;t mention in my post - I wanted to display that raw data directly than having to save it to a file. Is this possible? On 6/6/05, Jody Steele <[EMAIL PROTECTED]> wrote: > One way to do it, maybe not the "correct" way, would to be create a > temporary file that contains the contents of

Re: [pygtk] Image rendering

2005-06-05 Thread Jody Steele
One way to do it, maybe not the "correct" way, would to be create a temporary file that contains the contents of the file you retrieved from the URL, and then load that into the gtk.Image. You probably want to look into the tempfile module. Hope this helps. Jody Steele On Sun, 05 Jun 2005 15

[pygtk] Image rendering

2005-06-05 Thread Prash
Hi Guys .. need some help. My task is to fetch image from a url and then display using gtk image. I'm fetching image like import urlib f=urllib.urlopen("http://someserver.x.jpg";) f.read() gives me a raw string. Now how do i display this using gtk image?? TIA ___