如何将byte []转换为BitmapFrame c#

时间:2011-11-28 15:21:01

标签: c# wpf bitmapframe

我试过这个但是有异常 - 由于对象的当前状态,操作不是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 - 准备就绪!)

2 个答案:

答案 0 :(得分:2)

文档指出,要初始化图片,您需要在BeginInitEndInit之间进行初始化。那就是:

bmpImage.BeginInit();
bmpImage.StreamSource = mystream;
bmpImage.EndInit();

或者,您可以将流传递给构造函数:

bmpImage = new BitmapImage(mystream);

有关BeginInit

的示例和更多讨论,请参阅http://msdn.microsoft.com/en-us/library/system.windows.media.imaging.bitmapimage.begininit.aspx

答案 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中使用过它。