如何将二进制数据转换为图像?
在我的安卓应用程序中。我从代码中的 jpeg 图像中获取了二进制代码,如下所示。
byte[] val = stream.toByteArray();
BigInteger bi = new BigInteger(val);
String s = bi.toString(2);
该字符串 s 打印图像的二进制值。 我的问题是如何将此二进制格式转换为 jpeg 图像?
In my android application. I got binary code from a jpeg image from the code as follows.
byte[] val = stream.toByteArray();
BigInteger bi = new BigInteger(val);
String s = bi.toString(2);
This string s prints the binary value of the image.
My question is how to convert this binary format into a jpeg image??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我不太确定你想要什么。
如果您想直接从流创建
Bitmap
实例,您可以使用BitmapFactory
并在中显示该
-之后的实例:Bitmap
ImageView如果您想将基数为 2 的字符串表示形式转换回二进制数组,您也可以使用
BigInteger
:I'm not really sure what you want.
If you want to create a
Bitmap
-instance directly from the stream you can useBitmapFactory
and display thatBitmap
in anImageView
-instance afterwards:If you want to convert your string representation with radix 2 back to a binary array you can use
BigInteger
too:希望这有助于
编辑:
写入内部存储器
写入外部存储器
Hope this Helps
Edit:
To write in Internal Memory
To write in External Memory
我过去使用过这段代码:
I've used this code in the past: