Windows Phone 8 - 使用 Binding 将 byte[] 数组加载到 XAML 图像中

2023-12-05

我将图像存储为 byte[] 数组,因为我无法将它们存储为 BitmapImage。 ShotItem 类将存储在 ObservableCollection 中的isolatedStorage 中。

namespace MyProject.Model
{
    public class ShotItem : INotifyPropertyChanged, INotifyPropertyChanging
    {
        private byte[] _shotImageSource;
        public byte[] ShotImageSource
        {
            get
            {
                return _shotImageSource;
            }
            set
            {
                NotifyPropertyChanging("ShotImageSource");

                _shotImageSource = value;
                NotifyPropertyChanged("ShotImageSource");
            }
        }
        ...
    }
}

在我的 xaml 文件中,我有以下内容:

<Image Source="{Binding ShotImageSource}" Width="210" Height="158" Margin="12,0,235,0" VerticalAlignment="Top" />

不幸的是,我无法将图像作为字节直接加载到 xaml 中的图像容器中。我不知何故需要将 ShotImageSource byte[] 转换为 BitmapImage。我正在加载相当多的图像,所以这也必须异步完成。

我尝试使用转换器绑定,但我不确定如何让它工作。任何帮助将不胜感激 :)。


这是一个代码Converter这将转换你的byte[] into a BitmapImage:

public class BytesToImageConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        if (value != null && value is byte[])
        {
            byte[] bytes = value as byte[];
            MemoryStream stream = new MemoryStream(bytes);
            BitmapImage image = new BitmapImage();

            image.SetSource(stream);

            return image;
        }

        return null;

    }

    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

Windows Phone 8 - 使用 Binding 将 byte[] 数组加载到 XAML 图像中 的相关文章

随机推荐