VerySource

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 636|回复: 0

怎样把图片保存在流中,然后写入文件。

[复制链接]

1

主题

6

帖子

5.00

积分

新手上路

Rank: 1

积分
5.00
发表于 2020-1-7 02:50:01 | 显示全部楼层 |阅读模式
假如已经画好了一张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);是可以看到图片的。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

快速回复 返回顶部 返回列表