如何将二进制数据转换为图像?
在我的Android应用程序中。我从jpeg图像的代码中获取了二进制代码,如下所示。
byte[] val = stream.toByteArray(); BigInteger bi = new BigInteger(val);
String s = bi.toString(2);
该字符串s打印图像的二进制值。我的问题是如何将这种二进制格式转换为jpeg图像?
回答:
我不太确定你想要什么
如果要
Bitmap
直接从流中创建-instance,则可以使用BitmapFactory
它Bitmap
,ImageView
然后在-instance中显示它:Bitmap image = BitmapFactory.decodeStream(stream);
imageView.setImageBitmap(image);
如果要将基数2的字符串表示形式转换回二进制数组,也可以使用
BigInteger
:BigInteger bigInt = new BigInteger(s, 2);
byte[] binaryData = bigInt.toByteArray();
以上是 如何将二进制数据转换为图像? 的全部内容, 来源链接: utcz.com/qa/433322.html