股票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();
添加回答
举报
0/150
提交
取消