我正在尝试UIImageView
通过此方法显示图像,NSData.FromArray()
但它给出了一个空引用异常,我的代码如下:
Byte _imgData = GetRawData(_imgPath); // this method get the byte array of size ([131072])
NSData _data = NSData.FromArray(_imgData);
ImgView.Image = UIImage.LoadFromData(_data) //in this _data shows the byte array value but the ImgView.Image shows null
字节数组获取 RLE 压缩数据。
ImgView.Image = UIImage.LoadFromData(_data)
_data 是 RLE 压缩字节数据我不知道如何将其转换为 IOS 支持的图像格式。它给出了一个错误,有什么解决这个问题的建议吗?