Skip to content

Instantly share code, notes, and snippets.

@dalian-spacekey
Last active August 30, 2019 00:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dalian-spacekey/20bf5968827bee939ffa4565f8014b3d to your computer and use it in GitHub Desktop.
Save dalian-spacekey/20bf5968827bee939ffa4565f8014b3d to your computer and use it in GitHub Desktop.
ByteArrayToImageSourceConverter
public class ByteArrayToImageSourceConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) =>
value == null ?
null :
ImageSource.FromStream(() => new MemoryStream((byte[])value));
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
<Image Source="{Binding Image, Converter={StaticResource ByteArrayToImageSourceConverter}}"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment