473,385 Members | 2,029 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

wxPython: images from URLs

Does anyone here know if the wxImage class in wxPython supports dislaying
images from URLs?

--

Jonathan Daugherty
http://www.cprogrammer.org

"It's a book about a Spanish guy called Manual, you should read it."
-- Dilbert

Jul 18 '05 #1
8 7584
"Jonathan Daugherty" <cy****@cprogrammer.org> wrote in message
news:ma**************************************@pyth on.org...
Does anyone here know if the wxImage class in wxPython supports dislaying
images from URLs?


Yes, the trick is to use StringIO to convert the data rather than saving to
a file and loading it from disk. Here's a concrete example...

ka
---

import urllib
from wxPython import wx
from cStringIO import StringIO

# I'll assume you already have an app, frame...
# to draw into if that's what you want to do

wx.wxInitAllImageHandlers()

# here's a real URL for testing purposes
url = 'http://pythoncard.sourceforge.net/images/addresses_01.png'

try:
fp = urllib.urlopen(url)
data = fp.read()
fp.close()
img = wx.wxImageFromStream(StringIO(data))
except:
# decide what you want to do in case of errors
# there could be a problem getting the data
# or the data might not be a valid jpeg, png...
pass

# now you can do whatever you want with the image
Jul 18 '05 #2
Jonathan Daugherty <cy****@cprogrammer.org> wrote:

Does anyone here know if the wxImage class in wxPython supports dislaying
images from URLs?


wxImage will read from a file or from a wxWindows stream. It won't
download from a web site, but that's trivially easy using something like
urllib.
--
- Tim Roberts, ti**@probo.com
Providenza & Boekelheide, Inc.
Jul 18 '05 #3
I have written some code for this in my PyWiew application
which allows one to open image urls directly.

Copying some relevant code from the application...

self._imgstream = urllib2.urlopen(url).read()
stream=cStringIO.StringIO(self._imgstream)

try:
img=wxImageFromStream(stream)
except:
pass

In short you do the following.

1. Use urllib or urllib2 to open the image data stream
2. Make a cStringIO string buffer from the data stream
3. Pass it to "wxImageFromStream()" method to get the
wxImage object.
4. Display the image directly or by converting to
a suitable format using PIL.

In my experience I found that wxWindows tend to
display an error message window when the image is displayed
directly as a wxImage though the image data is quite ok.
(Something like a corrupt stream dialog). So what I have
done in the application is, use PIL to convert the wxImage
to Windows BMP format and then display it. This seems
to work for all images.

HTH.

-Anand

Tim Roberts <ti**@probo.com> wrote in message news:<fg********************************@4ax.com>. ..
Jonathan Daugherty <cy****@cprogrammer.org> wrote:

Does anyone here know if the wxImage class in wxPython supports dislaying
images from URLs?


wxImage will read from a file or from a wxWindows stream. It won't
download from a web site, but that's trivially easy using something like
urllib.

Jul 18 '05 #4
# self._imgstream = urllib2.urlopen(url).read()
# stream=cStringIO.StringIO(self._imgstream)
#
# try:
# img=wxImageFromStream(stream)
# except:
# pass

I have tried this and it appears to work, but once I have
the image (from wxImageFromStream), I use it as follows:

try:
bm = wxBitmap(img)
self.bitmap.setBitmap(bm)
except Exception, e:
print e

And the exception (raised by wxBitmap(img)) is:

String or Unicode type required

(The exception is a TypeError exception.)

Any ideas? No exceptions are raised by the block that
creates the image from the data stream. The image is
a JPG image, and I pass wxBITMAP_TYPE_JPEG to
wxImageFromStream. I have also tried omitting it as
well.

--

Jonathan Daugherty
http://www.cprogrammer.org

"It's a book about a Spanish guy called Manual, you should read it."
-- Dilbert

Jul 18 '05 #5
This is the straight forward way to do this in wxPython
but somehow it always pops up that ugly error window.
I remember trying many options to do this purely using
wxPython (wxWindows), but I failed.

If you use PIL in your program you can conver the
wx Image instance to a PIL image of type BMP and then
display it by reconverting it back to the wxImage
instance. PyWiew has methods to do this. The source code
is available somewhere in my Python page at
http://members.lycos.co.uk/anandpillai . I no longer
maintain that program, but the latest source code should
be available there.

Regards

-Anand

Jonathan Daugherty <cy****@cprogrammer.org> wrote in message news:<ma**************************************@pyt hon.org>...
# self._imgstream = urllib2.urlopen(url).read()
# stream=cStringIO.StringIO(self._imgstream)
#
# try:
# img=wxImageFromStream(stream)
# except:
# pass

I have tried this and it appears to work, but once I have
the image (from wxImageFromStream), I use it as follows:

try:
bm = wxBitmap(img)
self.bitmap.setBitmap(bm)
except Exception, e:
print e

And the exception (raised by wxBitmap(img)) is:

String or Unicode type required

(The exception is a TypeError exception.)

Any ideas? No exceptions are raised by the block that
creates the image from the data stream. The image is
a JPG image, and I pass wxBITMAP_TYPE_JPEG to
wxImageFromStream. I have also tried omitting it as
well.

Jul 18 '05 #6
"Anand Pillai" <py*******@Hotpop.com> wrote in message
news:84*************************@posting.google.co m...
I have written some code for this in my PyWiew application
which allows one to open image urls directly.

Copying some relevant code from the application...

self._imgstream = urllib2.urlopen(url).read()
stream=cStringIO.StringIO(self._imgstream)

try:
img=wxImageFromStream(stream)
except:
pass

In short you do the following.

1. Use urllib or urllib2 to open the image data stream
2. Make a cStringIO string buffer from the data stream
3. Pass it to "wxImageFromStream()" method to get the
wxImage object.
4. Display the image directly or by converting to
a suitable format using PIL.

In my experience I found that wxWindows tend to
display an error message window when the image is displayed
directly as a wxImage though the image data is quite ok.
(Something like a corrupt stream dialog). So what I have
done in the application is, use PIL to convert the wxImage
to Windows BMP format and then display it. This seems
to work for all images.

HTH.

-Anand

Tim Roberts <ti**@probo.com> wrote in message

news:<fg********************************@4ax.com>. ..
Jonathan Daugherty <cy****@cprogrammer.org> wrote:

Does anyone here know if the wxImage class in wxPython supports dislayingimages from URLs?


wxImage will read from a file or from a wxWindows stream. It won't
download from a web site, but that's trivially easy using something like
urllib.


In general you don't display a wxImage object directly. In wxWindows,
wxImage is the platform-independent image class and wxBitmap is the
platform-specific image class. So, when you set an image to be used with a
wxStaticBitmap or wxBitmapButton or draw to a wxDC you use a wxBitmap.
Certain image operations not yet supported by wxWindows are easier to handle
with PIL in which case your solution of keeping a working image in PIL
format and then converting a wxBitmap prior to display is also a good
solution. Conversion is covered in the wxPython wiki.

http://wiki.wxpython.org/

Here are some of the conversion routines PythonCard uses to deal with PIL,
wxImage, wxBitmap, and NumPy numeric arrays.

def PILToImage(pilImage):
if (pilImage.mode != 'RGB'):
pilImage = pilImage.convert('RGB')
imageData = pilImage.tostring('raw', 'RGB')
img = wx.wxEmptyImage(pilImage.size[0], pilImage.size[1])
img.SetData(imageData)
return img

def PILToBitmap(image):
return wx.wxBitmapFromImage(PILToImage(image))

def BitmapToPIL(bmp):
imageData = wx.wxImageFromBitmap(bmp).GetData()
imagePIL = fromstring('RGB', (bmp.GetWidth(), bmp.GetHeight()),
imageData)
imagePIL = imagePIL.convert('RGB')
return imagePIL

def numericArrayToImage(array):
height, width = array.shape[:2]
img = wx.wxEmptyImage(width, height)
img.SetData(array.tostring())
return img

ka
Jul 18 '05 #7
Jonathan Daugherty <cy****@cprogrammer.org> wrote:
# self._imgstream = urllib2.urlopen(url).read()
# stream=cStringIO.StringIO(self._imgstream)
#
# try:
# img=wxImageFromStream(stream)
# except:
# pass

I have tried this and it appears to work, but once I have
the image (from wxImageFromStream), I use it as follows:

try:
bm = wxBitmap(img)
self.bitmap.setBitmap(bm)
except Exception, e:
print e


Why wouldn't you use wxBitmapFromImage?
--
- Tim Roberts, ti**@probo.com
Providenza & Boekelheide, Inc.
Jul 18 '05 #8
# Why wouldn't you use wxBitmapFromImage?

The api docs suggest that using the wxBitmap(image) constructor
is better. Besides: this is beside the point -- this code fails:

stream = cStringIO.StringIO(imgdata)
imgobj = wx.wxImage(stream)

The second line raises a TypeError: "String or Unicode type
required."

--

Jonathan Daugherty
http://www.cprogrammer.org

"It's a book about a Spanish guy called Manual, you should read it."
-- Dilbert

Jul 18 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Andreas Volz | last post by:
Hi, I used SGMLParser to parse all href's in a html file. Now I need to cut some strings. For example: http://www.example.com/dir/example.html Now I like to cut the string, so that only...
2
by: dr_tyson | last post by:
I am trying to embed images into a wxPython app (created using Boa Constructor), but have not been able to do so. I know how to embed plots, but images seem to be a problem. I've tried using code...
0
by: Robin Dunn | last post by:
Announcing ---------- The 2.6.3.0 release of wxPython is now available for download at http://wxpython.org/download.php. There have been many enhancements and fixes implemented in this...
0
by: Robin Dunn | last post by:
Announcing ---------- The 2.6.3.0 release of wxPython is now available for download at http://wxpython.org/download.php. There have been many enhancements and fixes implemented in this...
2
by: Simon Wigzell | last post by:
I have inherited a database driven website that comes with a table of image links. The images are scattered all of the internet and there are thousands of them. I would like to write an asp script...
8
by: Janwillem | last post by:
Is there a way to force the wx.FileDialog to show as default the thumbnails vie in stead of list view? thanks, janwillem
3
by: wongjoekmeu | last post by:
Dear All, I want to write a GUI program with wxPython displaying an image. But the image I have is monochromatic. When I retrieve the data from the image I end up with a list of integer. Starting...
2
tharden3
by: tharden3 | last post by:
Ok, I've been going through these tutorials for both PyGame and wxPython, but I've hit a big speed bump. In each tutorial, I've gotten to the point where I need to "import" or "load" images for...
5
matheussousuke
by: matheussousuke | last post by:
Hello, I'm using tiny MCE plugin on my oscommerce and it is inserting my website URL when I use insert image function in the emails. The goal is: Make it send the email with the URL...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.