我需要将 byte[] 转换为 BitmapImage 并在 WPF 图像控件中显示它。(img.Source = ...)。
如果我像这样转换它:
m_photo = new BitmapImage();
using (MemoryStream stream = new MemoryStream(photo.ToArray()))
{
m_photo.BeginInit();
m_photo.StreamSource = stream;
m_photo.EndInit();
}
它不能将 XAML 绑定到 Source 属性,因为“m_photo 拥有另一个流”......我该怎么办?