ASP. NET

Source: Internet
Author: User

The following two methods are described:
1. Use the WebRequest and WebResponse classes
WebRequest wreq = WebRequest. Create ("http://www.bkjia.com/uploadfile/2012/0516/20120516112717995.gif ");
HttpWebResponse wresp = (HttpWebResponse) wreq. GetResponse ();
Stream s = wresp. GetResponseStream ();
System. Drawing. Image img;
Img = System. Drawing. Image. FromStream (s );
Img. Save ("D: \ aa.gif", ImageFormat. Gif); // Save
// Output directly below
MemoryStream MS = new MemoryStream ();
Img. Save (MS, ImageFormat. Gif );
Img. Dispose ();
Response. ClearContent ();
Response. ContentType = "image/gif ";
Response. BinaryWrite (ms. ToArray ());
2. Use the WebClient class
WebClient my = new WebClient ();
Byte [] mybyte;
Mybyte = my. DownloadData ("http://www.bkjia.com/uploadfile/2012/0516/20120516112717995.gif"); MemoryStream MS = new MemoryStream (mybyte );
System. Drawing. Image img;
Img = System. Drawing. Image. FromStream (MS );
Img. Save ("D: \ a.gif", ImageFormat. Gif); // Save
// Output directly below
Response. ClearContent ();
Response. ContentType = "image/gif ";
Response. BinaryWrite (mybyte );
If it is a real image address, use
My. DownloadFile ("http://www.bkjia.com/uploadfile/2012/0516/20120516112717995.gif", "D: \ a.gif"); // save
Saved directly

 


Excerpt from advancing with the times

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.