编程语言
首页 > 编程语言> > java-如何将二进制数据转换为图像?

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

作者:互联网

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

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

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

解决方法:

我不太确定你想要什么

>如果要直接从流中创建Bitmap-instance,则可以使用BitmapFactory,然后在ImageView-instance中显示该Bitmap:

Bitmap image = BitmapFactory.decodeStream(stream);
imageView.setImageBitmap(image);

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

BigInteger bigInt = new BigInteger(s, 2);
byte[] binaryData = bigInt.toByteArray();

标签:android,java,jpeg,binary-data
来源: https://codeday.me/bug/20191011/1893742.html