views:

35

answers:

1

what im trying to archive is to load some images from external servers flickr, but i want to re-size the image before rendering, i want to know if there is any way to load that external image check the size and if its too big then with some c# code do the resizing and then send it to the client?

Thx in advance.

+1  A: 

Resizing an Image has been covered before:

http://stackoverflow.com/questions/1922040/resize-an-image-c

jfar
Well maybe i didn't explain myself correctly, i have found several methods for resizing but what i needed was to do the same with an image that is not in the server drive i just have the url of the image. The starting point of those methods always point to an img on the drive. Thx anyway because following the links i have found a method that does what i need here http://forums.asp.net/t/507202.aspx the method name is LoadImageFromURL.
Omar