vote up 0 vote down star

In the following code below:

Image img = new Image();
img.Source = new BitmapImage(new Uri("http://someURL/somefilename.jpg", UriKind.Absolute));

how can I determine if the image successfully loaded (when there's a valid URI)? i.e., The URI is a valid format, but the file may not exist.

flag

60% accept rate

2 Answers

vote up 1 vote down

Image has an ImageFailed event.

BitmapSource (base for BitmapImage) has an IsDownloading property, as well as DownloadProgress, DownloadCompleted, and DownloadFailed events.

link|flag
vote up 0 vote down

If you run your example code above (with a valid url but invalid image file) you will get an exception thrown:

Error: Sys.InvalidOperationException: ImageError error #4001 in control 'Xaml1': AG_E_NETWORK_ERROR

So if you wrap your code in a try/catch block you can determine if the image loaded property or not.

link|flag
Actually, there is no exception thrown. I can link to garbage or to nothing at all and there is no exception. – whim1 Oct 13 '08 at 23:56

Your Answer

Get an OpenID
or

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