//src is the internet location of the image
//local is a temp file generated in my machine
//all images are less than 1MB
HttpWebRequest request = WebRequest.Create(src) as HttpWebRequest;
using (var response = request.GetResponse())
using (var stream = response.GetResponseStream())
{
byte[] buffer = new byte[(int)response.ContentLength];
stream.Read(buffer, 0, (int)response.ContentLength);
File.WriteAllBytes(local, buffer);
}
I tried with a few images, some are correctly displayed. One of others (.png file) is displayed incorrectly, which means it can be displayed, I can see the image, but looks totally different, like an abstract painting. Another .jpg file can't be displayed, I was told "windows picture manager can't open the picture blabla". All of the files downloaded are the same size as those online, I can't find any difference. Any ideas about the weird issue? Thanks.
P.S. I hope we can upload tiny attachments on SO when asking questions...