bmp = wx.Image("C:\User\Desktop\cool.bmp", wx.BITMAP_TYPE_ANY).ConvertToBitmap()

If i run this, it will automatically show an error message saying that it failed to load the image. How can I stop my program from doing this?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

I can't even get my wxPython code to run if I pass it an an invalid image. This is probably related to the fact that wxPython is a light wrapper around a C++ library though. See http://wiki.wxpython.org/C%2B%2B%20%26%20Python%20Sandwich for an interesting explanation.

The best way around issues like this is to actually use Python's os module, like this:

if os.path.exists(path):
   # then create the widget

I do this sort of thing for config files and other things. If the file doesn't exist, I either create it myself or don't create the widget or I show a message so I know to fix it.

link|improve this answer
ah yeah, i guess theres no way – thelost Feb 19 at 15:37
feedback

If all you're after is to stop the exception from raising, you can enclose it in a try/except block:

try:
    bmp = wx.Image("C:\User\Desktop\cool.py", wx.BITMAP_TYPE_ANY).ConvertToBitmap()
except:
    pass

Bear in mind, it's good practice to only ignore specific exceptions, and to do something when it occurs (ie tell user to pick another image):

try:
    bmp = wx.Image("C:\User\Desktop\cool.py", wx.BITMAP_TYPE_ANY).ConvertToBitmap()
except <Specific Exception>, e:
    doSomething() # Handle exception

Since it's an actual pop up message, you can use wx.Log_EnableLogging(False) to disable error logging in your application

To stop stderr redirecting you can set wx.App(redirect=False)

Or to make error log to a file instead of onscreen you can use:

wx.App(redirect=True,filename='error_log')
link|improve this answer
I tried this, however the error message still comes up. – thelost Feb 4 at 14:06
This error message is an actual, pop up message – thelost Feb 4 at 14:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.