如何将byte[]转换为BitmapFrame c#
本文关键字:转换 BitmapFrame byte | 更新日期: 2023-09-27 18:15:53
我已经尝试过了,但是有异常-由于对象的当前状态,操作无效
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);
文档指出,为了初始化映像,您需要在BeginInit
和EndInit
之间进行初始化。即:
bmpImage.BeginInit();
bmpImage.StreamSource = mystream;
bmpImage.EndInit();
或者,您可以将流传递给构造函数:
bmpImage = new BitmapImage(mystream);
参见http://msdn.microsoft.com/en-us/library/system.windows.media.imaging.bitmapimage.begininit.aspx查看BeginInit
的示例和更多讨论
这是我在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);
}
也是线程安全的,因为我在任务中使用了它。