WPF BitmapFrame到BitmapImage

时间:2018-11-26 22:46:41

标签: wpf bitmap bitmapimage

我有一个反序列化的BitmapFrame。我需要将其转换为BitmapImage。怎么做? 我使用了这段代码:

https://social.msdn.microsoft.com/Forums/vstudio/en-US/31808363-6b00-43dd-8ea8-0917a35d62ad/how-to-convert-stream-to-bitmapsource-and-how-to-convert-bitmapimage-to-bitmapsource-in-wpf?forum=wpf

问题在于BitmapImage没有Source属性,只有StreamSource或UriSource。

序列化部分:

public void GetObjectData(SerializationInfo info, StreamingContext context)
        {
            MemoryStream stream = new MemoryStream();
            JpegBitmapEncoder encoder = new JpegBitmapEncoder();
            encoder.Frames.Add(BitmapFrame.Create(image.UriSource));
            encoder.QualityLevel = 30;
            encoder.Save(stream);
            stream.Flush();
            info.AddValue("Image", stream.ToArray());
...

反序列化:

public ImageInfo(SerializationInfo info, StreamingContext context)
        {
            //Deserialization Constructorbyte[] encodedimage = (byte[])info.GetValue("Image", typeof(byte[]));
            if (encodedimage != null)
            {
                MemoryStream stream = new MemoryStream(encodedimage);
                JpegBitmapDecoder decoder = new JpegBitmapDecoder(stream, BitmapCreateOptions.None, BitmapCacheOption.Default);
                Image = new BitmapImage();
                Image.BeginInit();
                //Image.StreamSource = ...  decoder.Frames[0];
                Image.EndInit();
                Image.Freeze();
            }
...

我需要有效的方法来代替上面的评论...

1 个答案:

答案 0 :(得分:1)

除了您实际上并不需要此转换(因为无论您在何处使用BitmapImage都可以使用BitmapFrame)之外,您还可以直接从字节数组中的编码位图解码BitmapImage。

不必显式使用BitmapDecoder。将流分配给BitmapImage的StreamSource属性时,框架会自动使用适当的解码器。创建BitmapImage之后应立即关闭流时,您必须注意设置BitmapCacheOption.OnLoad

Image = new BitmapImage();
using (var stream = new MemoryStream(encodedimage))
{
    Image.BeginInit();
    Image.CacheOption = BitmapCacheOption.OnLoad;
    Image.StreamSource = stream;
    Image.EndInit();
}
Image.Freeze();