Reputation: 865
I have a listbox to display photos retrieved from database by using wcf ria service in a silverlight project. The data loading time is long. The raw size of the photos are large byte[],but I only want to display a small image(icon) in the listbox. Is there a way that I can reduce the resolution of the photos before transfer to the client to reduce the data transfer size?
Thanks,
Wei
Upvotes: 0
Views: 263
Reputation: 1480
Check this product http://imageresizing.net/.
It can resize your images to any size and keep the result cached to improve the speed of subsequent requests. It also is implemented in a very efficient way to allow for a better throughput of your IIS.
Upvotes: 1