- 积分
- 40165
- 好友
- 记录
- 主题
- 帖子
- 听众
- 收听
|
发表于 2013-1-21 14:48:28
|
显示全部楼层
你这个问题应该是没有获取到字节的问题吧,你看看这个例子[code=csharp]private void button1_Click(object sender, EventArgs e)
{
HttpHelper h = new HttpHelper();
HttpItem item = new HttpItem();
item.URL = "http://www.baidu.com
/img/shouye_b5486898c692066bd2cbaeda86d74448.gif";
item.ResultType = ResultType.Byte;
h.GetHtml(item);
pictureBox1.Image = byteArrayToImage(item.ResultByte);
}
private Image byteArrayToImage(byte[] Bytes)
{
using (MemoryStream ms = new MemoryStream(Bytes))
{
Image outputImg = Image.FromStream(ms);
return outputImg;
}
}[/code]
是不是少加了这个
item.ResultType = ResultType.Byte;
|
|