我有一个来自反序列化的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();
}
...
我需要一些有效的东西,而不是上面的评论。。。
除此之外,您并不真正需要此转换(因为您可以在使用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();