Skip to main content
Home Forums Silverlight Programming Programming with .NET - General dynamic load image and display it inch by inch?
2 replies. Latest Post by jawc on October 13, 2008.
(0)
jawc
Member
47 points
57 Posts
10-12-2008 1:51 PM |
Hello all, I try to download a big image file which is around 5~10 mb.I get a problem....the image will be displayed only whole image is downloaded...therefore, the user need to wait until whole image is downloaded. During the processing, user can't see anything...( even I can show progress bar...)Is it possible to show image inch by inch before it is downloaded?thank you
gabouy
219 points
45 Posts
10-12-2008 5:03 PM |
I dont know a way to show inch by inch progress on the image loading process, but one workaround could be to split the image in the server into several smaller images, and load them sequentially with different silverlight Image controls, in this way you would be able to show partial loading progress.
10-13-2008 8:19 AM |
Dear gabouy,Thank you for your reply.That is an idea....any others?