lwconquer
lwconquer

Reputation: 865

How to shrink the size of transferred images with wcf ria service?

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

Answers (1)

Michael Domashchenko
Michael Domashchenko

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

Related Questions