我有一个从字节数组加载的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写入磁盘时,它只会抛出错误:
这里有什么想法吗?将图像写入磁盘的其他方法?