内容简介:翻译自:https://stackoverflow.com/questions/12142634/how-to-download-an-image-from-an-uri-and-create-a-bitmap-object-from-it
我正在尝试从网站下载图像并根据该图像创建位图.它看起来像这样:
public void test() { PostWebClient client = new PostWebClient(callback); cookieContainer = new CookieContainer(); client.cookies = cookieContainer; client.download(new Uri("SITE")); } public void callback(bool error, string res) { byte[] byteArray = UnicodeEncoding.UTF8.GetBytes(res); MemoryStream stream = new MemoryStream( byteArray ); var tmp = new BitmapImage(); tmp.SetSource(stream); }
我在回调方法的最后一行收到“未指定的错误”.有趣的事实是,如果我使用BitmapImage(新的Uri(“SITE”))它运作良好…(我不能这样做,因为我想从该URL抓取cookie.图像是jpg.
PostWebClient类 – > http://paste.org/53413
这是Bitmap类文档中最简单的代码.
System.Net.WebRequest request = System.Net.WebRequest.Create( "http://www.microsoft.com//h/en-us/r/ms_masthead_ltr.gif"); System.Net.WebResponse response = request.GetResponse(); System.IO.Stream responseStream = response.GetResponseStream(); Bitmap bitmap2 = new Bitmap(responseStream);
翻译自:https://stackoverflow.com/questions/12142634/how-to-download-an-image-from-an-uri-and-create-a-bitmap-object-from-it
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 从中兴事件谈为什么应该用开源软件?
- Redis应用-位图
- Redis应用-位图
- Lucene 位图实现 RoaringDocIdSet
- go 位图(bitmap)的实现
- 手机被“征用”挖矿,黑客真能从中挖到币吗?
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
面向模式的软件体系结构(卷1) (平装)
Frank Buschmann、Regine meunier、Hans Rohnert、Peter Sommerlad、Michael Stal / 贲可荣、郭福亮 / 机械工业出版社 / 2003-1 / 45.0
一起来看看 《面向模式的软件体系结构(卷1) (平装)》 这本书的介绍吧!