System.Web.UI.WEbControls.Image<=System.Drawing.Image??
如何将System.Drawing.Image变量 转换成
System.Web.UI.WEbControls.Image 变量
------解决方案--------------------要把文件保存到某个目录,然后设置Image的URL:
MemoryStream ms = new MemoryStream();
Resource.Res_Image.Menu_HeaderBackground.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
FileStream fs = new FileStream(ms , FileMode.Append);
byte[] buffer = Sourcefile.ToArray();
fs.Write(buffer, 0, buffer.Length);
fs.Close();
Sourcefile.Close();
------解决方案--------------------System.Web.UI.WEbControls.Image生成的是一个装图片的控件容器,System.Drawing.Image生成的是图片的对象,二者是不能直接转化的,必须通过流来转化
------解决方案--------------------可以,做一个页面,然后Image.ImageUrl = "img.aspx ";
img.aspx
用流输出图片