WP7Dev Tip 2– Few things to remember on Image handling

Image handling is an important factor deciding the performance as well as usability of any application. When it comes to Windows Phone 7 it is even more important because of the limited network conditions and the low processing power as compared to PC.
Here is the video I am talking about the same things with a Bing Search sample in Silverlight TV show


I am just listing down few common tips which can greatly improve the performance and effectiveness of your application. And also please note that some of the points might not be applicable for certain applications especially for very small apps.
  • Use JPEG instead of PNG whenever possible – Jpeg decodes faster than PNG image.  If there is no transparency needed, use Jpeg with a compromised quality
  • Optimize your static Image quality :  Medium quality compressed Jpeg requires less memory to render as compared to a full quality Jpeg. So there is a big savings in memory and performance, if we can compromise on the Jpeg quality slightly. I am pasting two images below, one is 100% and the other is 97% quality, you can hardly make out the difference so the gist of it from a file size perspective is that the 97% one takes only half the size of the 100% image(108KB and 58Kb) ( of course the size and compression varies depends on the color information of the images). Now if you have got so many static images in the project, this trick can reduce the XAP file size considerably smaller as well as runtime memory usage will be quite less. You can consider this tip when you use large background images like Page/Panorama/Pivot background or splash screen images etc..
                   Penguins  Penguins97
  • Use images instead of complex gradients or vector graphics(XAML).
  • Never bind server-hosted images directly to the <Image> control, because Silverlight runtime will use the UI thread (using WebClient) to fetch that image from the server, that can make the UI unresponsive for some time.
  • Use a background thread and HttpWebRequest class based implementation to download the image data in an efficient way which finally creates BitmapImage and sets that as the source. A clean MVVM wrapper around this would make your entire Image management pretty easy.
  • When large scrollable list boxes need preview again don’t use vector/gradients instead use small Jpeg/png, that helps the system level caching effectively and improve the performance of scrolling.
  • Never let any image downloads happening while scrolling : Image downloading on long Listboxes should be controlled by the ScrollViewer state and position to optimize the network activity and also it would be effective to download the images in a queue based background thread system. This will ensure scrolling performance by downloading only the visible set of images, that too only when the scrolling activity stops.
In the below code snippet I have a collection of ViewModel instances bound to a ListBox and the ListBox has a ScrollViewer in its control template. We need to do two things to make sure there is no unnecessary image download happening 1) Detect the scroll stop event  2) Calculate the scroll position to find out the range of items which are visible to the user. Our aim is to just download the images associated with the ViewModels of that particular range when the scroll operation stops.
I am using the code snippet from Peter Torr’s blog for detecting the Scroll state and applying some easy math to find out the index range. Here I am assuming my Collection class has  some method to do the Queued image download in background thread with the signature void LoadImages(int startIndex, int count)
In the code snippet you can also see the place where we can detect the scroll end. That is very useful for pagination scenarios to download the next set of data from the service.
             image

Please take a look at the source code, that shows the image download in a background thread and the visible range of visuals getting downloaded when we stop scrolling.

Have fun with Wp7 development!

Comments

Jason said…
Hi Jobi! Thanks so much for this post and the Silverlight video. Would you mind uploading the source code for the Mango image sample you showed in the video? I'd particularly like to see how you are creating the downloaded JPEG images on a background worker thread.

Thanks in advance!!
I appreciate the tips you shared. WP&Dev seems worth a try and i am expecting to create better images once I pout your ideas into place. Thanks a lot!!!
Anonymous said…
Watched the video. Very cool,Jobi! - ManjuS.
Johan Lindfors said…
This is a great article, especially IF this is still relevant in the latest release of the platform and tools!

I had to change the line 87 in BingResultCollection.cs to: if (startIndex + count > Count) return;

If I didn't the last images would never get loaded.

Regards

Johan
Jobi Joy said…
thanks Johan for finding the bug :)
Jobi Joy said…
thanks Johan for finding the bug :)
Veeru said…
Hi Joy,

It is great article regarding downloading images. Can you post the full source code i.e. when we select any image from the list and showing in another page with blurred image first and clarity image as next.

send us full source code to my mail, it will be very helpful to me
Anonymous said…
Hi Jobi, Thanks for this post.

I think that it is not full source code i.e.“first showing blurred image after that displaying clarity image”.

I think that it is missing in the attached source code. Please attached the full source to this block.
CYRS said…
infact this post remind me my old days when i was C++ programmer this is motivational post for new programmers now i work in data recovery company as Software engineer
Unknown said…
I can't download sample code. Please check link again thanks
Unknown said…
This comment has been removed by the author.
Unknown said…
HI Jobi,
Please post the code.The link you have provided is not giving the code.
Your Blog are completely remarkable and share worthy. I really appreciate your efforts that you put on this. Keep sharing.
C++ Training Institute in South Delhi
Informative post indeed, I’ve being in and out reading posts regularly and I see a lot of engaging people sharing things and majority of the shared information is very valuable and so, here’s my fine read

java training institute in delhi

Popular posts from this blog

Time Picker User Control

A simple Multiselect ComboBox using expression Blend

A Simple Radial Panel for WPF and SilverLight