Skip to content

Instantly share code, notes, and snippets.

@Boztown
Created August 15, 2012 16:14
Show Gist options
  • Save Boztown/3361314 to your computer and use it in GitHub Desktop.
Save Boztown/3361314 to your computer and use it in GitHub Desktop.
C#: Download image into memory
WebRequest req = WebRequest.Create(m.Media.ThumbnailUrl);
WebResponse response = req.GetResponse();
Stream stream = response.GetResponseStream();
images.Add(Image.FromStream(stream));
stream.Close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment