C # URL Get picture flow string

Source: Internet
Author: User


http URL gets picture flow string
String url = serverurl.trimend ('/') + PUrl;
WebRequest request = webrequest.create (URL);
WebResponse response = Request. GetResponse ();
Stream stream = Response. GetResponseStream ();
byte[] bytefile = null;
list<byte> bytes = new list<byte> ();
int temp = stream. ReadByte ();
while (temp! =-1)
//{
bytes. Add ((byte) temp);
temp = stream. ReadByte ();
//}
Bytefile = bytes. ToArray ();
String str = convert.tobase64string (bytefile);
Response. Close ();

Local URL gets picture flow string
String path = "E:/1.png";
FileStream fs = file.openread (path); OpenRead
int filelength = 0;
Filelength = (int) fs. Length; Get file length
byte[] image = new Byte[filelength]; Create a byte array
Fs. Read (image, 0, filelength); Read by Byte stream
System.Drawing.Image result = System.Drawing.Image.FromStream (FS);
Fs. Close ();
String str = convert.tobase64string (image);

return str;

C # URL Get picture flow string

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.