我试过这个但是有异常 - 由于对象的当前状态,操作不是valide
private BitmapFrame backconvertor(byte[] incomingBuffer)
{
BitmapImage bmpImage = new BitmapImage();
MemoryStream mystream = new MemoryStream(incomingBuffer);
bmpImage.StreamSource = mystream;
BitmapFrame bf = BitmapFrame.Create(bmpImage);
return bf;
}
当我尝试
时出错return backconvertor(buff);
在其他功能中(buff - 准备就绪!)
答案 0 :(得分:2)
文档指出,要初始化图片,您需要在BeginInit
和EndInit
之间进行初始化。那就是:
bmpImage.BeginInit();
bmpImage.StreamSource = mystream;
bmpImage.EndInit();
或者,您可以将流传递给构造函数:
bmpImage = new BitmapImage(mystream);
有关BeginInit
。
答案 1 :(得分:1)
这是我在WPF转换器中处理字节到BitmapFrame的方法,它完美地运行:
var imgBytes = value as byte[];
if (imgBytes == null)
return null;
using (var stream = new MemoryStream(imgBytes))
{
return BitmapFrame.Create(stream,
BitmapCreateOptions.None, BitmapCacheOption.OnLoad);
}
它的线程安全,因为我之前也在Task.Run中使用过它。