MvvmCross binding UIImageView to Byte[]

本文关键字:Byte to binding UIImageView MvvmCross | 更新日期: 2023-09-27 18:16:27

我很确定有一个预构建的转换器将字节数组绑定到UIImageView,但我很难找到它。

谁能给我指个正确的方向?

MvvmCross binding UIImageView to Byte[]

有几个示例是这样做的:

  • 使用内置 InMemoryImage转换器的图片采集示例- firstview .cs#L27 -这个内置转换器仅在PictureChooser插件中可用-参见MvxInMemoryImageValueConverter.cs
  • FractalGen示例使用自定义ValueConverter - generateview .cs#L26和BytesToUIImageConverter.cs