using SlnMesnac.WPF.Models; using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Data; using System.Windows.Media.Imaging; namespace SlnMesnac.WPF.ConvertTo { public class ByteArrayToImageConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { if (value is byte[] bytes) { BitmapImage image = new BitmapImage(); using (MemoryStream stream = new MemoryStream(bytes)) { stream.Position = 0; image.BeginInit(); image.StreamSource = stream; image.CacheOption = BitmapCacheOption.OnLoad; image.EndInit(); } return image; } return null; } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } } }