I just want to get a BitmapImage from a internet URL, but my function doesn\'t seem to work properly, it only return me a small part of the image. I know WebResponse is work
Why not use System.Net.WebClient.DownloadFile?
System.Net.WebClient.DownloadFile
string url = @"http://www.google.ru/images/srpr/logo3w.png"; string file = System.IO.Path.GetFileName(url); System.Net.WebClient cln = new System.Net.WebClient(); cln.DownloadFile(url,file);