小编典典

如何将二进制数据转换为图像?

java

在我的Android应用程序中。我从jpeg图像的代码中获取了二进制代码,如下所示。

byte[] val = stream.toByteArray();
          BigInteger bi = new BigInteger(val);
    String s =  bi.toString(2);

该字符串s打印图像的二进制值。我的问题是如何将这种二进制格式转换为jpeg图像?


阅读 1659

收藏
2020-11-26

共1个答案

小编典典

我不太确定你想要什么

  • 如果要Bitmap直接从流中创建-instance,则可以使用BitmapFactoryBitmapImageView然后在-instance中显示它:

    Bitmap image = BitmapFactory.decodeStream(stream);
    

    imageView.setImageBitmap(image);

  • 如果要将基数2的字符串表示形式转换回二进制数组,也可以使用BigInteger

    BigInteger bigInt = new BigInteger(s, 2);
    

    byte[] binaryData = bigInt.toByteArray();

2020-11-26