Я пытаюсь понять, как сериализация изображений работает в WPF. У меня есть следующий класс:
[Serializable]
public class TestClass : ISerializable
{
public TestClass() { }
protected TestClass(SerializationInfo info, StreamingContext context)
{
SerializedImage = (byte[])info.GetValue("SerializedImage", typeof(byte[]));
}
public byte[] SerializedImage { get; set; }
public Image Image { get; set; }
public void GetObjectData(SerializationInfo info, StreamingContext context)
{
info.AddValue("SerializedImage", SerializedImage);
}
[OnSerializing]
private void OnSerializing(StreamingContext sc)
{
BitmapImage image = Image.Source as BitmapImage;
MemoryStream stream = new MemoryStream();
BmpBitmapEncoder encoder = new BmpBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create(image));
encoder.Save(stream);
SerializedImage = stream.ToArray();
stream.Close(); ;
}
[OnDeserialized]
private void OnDeserialized(StreamingContext sc)
{
MemoryStream stream = new MemoryStream(SerializedImage);
Image = new Image
{
Source = BitmapFrame.Create(stream, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.OnLoad)
};
stream.Close();
}
}
Это код Xaml:
<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="358" Width="300" ResizeMode="NoResize">
<StackPanel>
<Image x:Name="Screenshot" Height="178" />
<Button Width="80" Height="30" Content="Load Image" Click="Button_Click_1" />
<Button Width="92" Height="30" Content="Save to file" Click="Button_Click_2" />
<Button Width="92" Height="30" Content="Load File" Click="Button_Click_3" />
<Button Width="92" Height="30" Content="Load File (1)" Click="Button_Click_4" />
</StackPanel>
И это код позади:
public partial class Window1 : Window
{
TestClass test;
public Window1()
{
InitializeComponent();
test = new TestClass();
}
private void Button_Click_1(object sender, RoutedEventArgs e)
{
OpenFileDialog dialog = new OpenFileDialog { Filter = "Bmp Image | *.bmp" };
dialog.ShowDialog();
if (dialog.FileName != string.Empty)
{
Screenshot.Source = new BitmapImage(new Uri(dialog.FileName));
test.Image = Screenshot;
}
}
private void Button_Click_2(object sender, RoutedEventArgs e)
{
SaveFileDialog dialog = new SaveFileDialog { DefaultExt = ".t", AddExtension = true };
dialog.ShowDialog();
if (dialog.FileName != string.Empty)
{
BinaryFormatter formatter = new BinaryFormatter();
FileStream stream = new FileStream(dialog.FileName, FileMode.Create);
formatter.Serialize(stream, test);
stream.Close();
}
}
private void Button_Click_3(object sender, RoutedEventArgs e)
{
OpenFileDialog dialog = new OpenFileDialog { Filter = "TEST file | *.t" };
dialog.ShowDialog();
if (dialog.FileName != string.Empty)
{
BinaryFormatter formatter = new BinaryFormatter();
FileStream stream = new FileStream(dialog.FileName, FileMode.Open);
test = formatter.Deserialize(stream) as TestClass;
stream.Close();
Screenshot = test.Image;
}
}
private void Button_Click_4(object sender, RoutedEventArgs e)
{
OpenFileDialog dialog = new OpenFileDialog { Filter = "TEST file | *.t" };
dialog.ShowDialog();
if (dialog.FileName != string.Empty)
{
BinaryFormatter formatter = new BinaryFormatter();
FileStream stream = new FileStream(dialog.FileName, FileMode.Open);
test = formatter.Deserialize(stream) as TestClass;
stream.Close();
Screenshot.Source = null;
MemoryStream stream1 = new MemoryStream(test.SerializedImage);
Screenshot.Source = BitmapFrame.Create(stream1, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.OnLoad);
}
}
}
Теперь по какой-то причине, которую я не знаю, десериализация изображения в TestClass работает не очень хорошо. Если я сам возьму байтовый массив и преобразую его обратно в изображение (Button_Click_4), оно сработает, и изображение отобразится в моей форме. Если вместо этого я получу изображение непосредственно из свойства Image в TestClass, на форме ничего не будет отображаться. Я не знаю, как это возможно, поскольку код, задействованный в обеих ситуациях, одинаков, если за кадром не происходит что-то еще.
Что я делаю не так? Я предоставил полный код, вы можете вставить его и запустить, чтобы увидеть проблему.