在我的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
BitmapFactory
ImageView
Bitmap image = BitmapFactory.decodeStream(stream);
imageView.setImageBitmap(image);
如果要将基数2的字符串表示形式转换回二进制数组,也可以使用BigInteger:
BigInteger
BigInteger bigInt = new BigInteger(s, 2);
byte[] binaryData = bigInt.toByteArray();