|
假如已经画好了一张bitmap图
Stream s = new MemoryStream();
bitmap.Save(s, ImageFormat.Jpeg);
using ( FileStream fs = new FileStream( Server.MapPath("aaaaaaa.jpg"), FileMode.Create) )
{
byte[] b = new byte[1024];
int read = 0;
while ((read = s.Read(b, 0, b.Length)) > 0)
{
fs.Write(b, 0, read);
}
}
文件可以生成,但是大小却为0 K,没有图像,怎么回事啊?
用bitmap.Save(Response.OutputStream,ImageFormat.Jpeg);是可以看到图片的。
|
|