C#通過URL獲取圖片并顯示在PictureBox上的方法
當前位置:點晴教程→知識管理交流
→『 技術(shù)文檔交流 』
string url = string.Format(@"http://webservice.36wu.com/DimensionalCodeService.asmx/GetCodeImgByString?size={0}&content={1}", 5, 123456);
System.Net.WebRequest webreq = System.Net.WebRequest.Create(url); System.Net.WebResponse webres = webreq.GetResponse(); using(System.IO.Stream stream = webres.GetResponseStream()) { pictureBox1.Image = Image.FromStream(stream); } 該文章在 2017/3/8 0:11:06 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |