股票WebServices byte[] 图片

股票WebServices 返回byte[]
如果何转成图片,如果控制width,height,位置?

我用下面的代码是画出来了,但不知道怎么控制图片的位置及width,height

难道只能像做验证码一样<img src="img.aspx" width="" height="" /> ??

cn.com.webxml.www.ChinaStockWebService stock = new cn.com.webxml.www.ChinaStockWebService();
string code = "sh000001";
byte[] imgByte = stock.getStockImageByteByCode(code);

Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache);

Response.ClearContent();
Response.ContentType = "image/gif";
Response.BinaryWrite(imgByte);
Response.End();


青春有我
浏览 578回答 1
1回答

一只名叫tom的猫

在Reponse里画。
打开App,查看更多内容
随时随地看视频慕课网APP