//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...

link|improve this question

So bmp images are correct but jpg and png are not? – John Kalberer Jul 22 '11 at 3:31
This might sound obvious but did you diff the binary/hex data with the original to make sure that it was exactly the same? – Jesus Ramos Jul 22 '11 at 3:31
@John Kalberer: See my edit. – Danny Chen Jul 22 '11 at 3:34
You're ignoring possibilities like chunked transfer, gzip encoding, etc. Look at the network traffic using Fiddler and see what the difference is - it may not be PNG vs. JPG. – John Saunders Jul 22 '11 at 3:35
2  
You are not paying attention to the return value of Read(). It doesn't have to be response.ContentLength, you have to loop. Doesn't otherwise jive with the size observation. – Hans Passant Jul 22 '11 at 3:37
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.