JpegBitmapEncoder无法访问封闭流

时间:2017-01-23 13:19:24

标签: c#

我有一个从字节数组加载的BitmapSource:

BitmapSource bitmap = null;

using (var stream = new MemoryStream(bytes))
{
  var decoder = new JpegBitmapDecoder(stream, BitmapCreateOptions.None, BitmapCacheOption.None);
      bitmap = decoder.Frames[0];
      stream.Flush();
}

return bitmap;

当我尝试将其作为JPEG写入磁盘时,它只会抛出错误:

enter image description here

这里有什么想法吗?将图像写入磁盘的其他方法?

0 个答案:

没有答案