I need to display images from a network server that generates tiff images. I would like to use silverlight 3 to display these images. I would like to stream the jpeg to the client. Is this possible if the images "live" on a server other than the web server?
+1
A:
I think that silverlight doesn't recognize tiffs - only JPGs and PNGs. I order to load dynamically image from URL you have to do something like this in your code behind:
image.Source = new BitmapImage(new Uri("http://example.com/img.jpeg"));
"image" is the name of the Image object in xaml.
PanJanek
2009-11-27 07:34:03
+1. Yes only JPGs and PNGs (not gray scale or 64bit) are supported. Given a full URL Silverlight can display images from any source.
AnthonyWJones
2009-11-27 10:28:37