在android中将字符串转换为位图
我正在开发一个将图像从一个设备传输到另一个设备的应用程序 通过蓝牙设备。现在我的问题是,我通过蓝牙将位图值作为 byte[] 传输。 现在如何将其再次解析为位图...
提前致谢...
I am working on an application which transfers the image from one device to another
device via bluetooth. Now my problem is, I am transfering the bitmap value as byte[] through bluetooth.
Now how to resolve it again into bitmap...
Thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 BitmapFactory.decodeByteArray() 方法。
我认为这个字符串应该是 Base64 格式。查看此链接以获取更多信息
Use the BitmapFactory.decodeByteArray() method.
I think for This string should be Base64 Format. Have a look on this Link for More Info
使用 BitmapFactory 您可以转换图像
using the BitmapFactory you can convert the image