在android中将字符串转换为位图

发布于 2024-10-25 00:01:52 字数 106 浏览 0 评论 0原文

我正在开发一个将图像从一个设备传输到另一个设备的应用程序 通过蓝牙设备。现在我的问题是,我通过蓝牙将位图值作为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深海夜未眠 2024-11-01 00:01:52

使用 BitmapFactory.decodeByteArray() 方法。

byte[] byteArray; // the data
int offset = 0; // offset into array
int length = 1024; // length of array
Bitmap bm = BitmapFactory.decodeByteArray(byteArray, offset, length);

我认为这个字符串应该是 Base64 格式。查看此链接以获取更多信息

Use the BitmapFactory.decodeByteArray() method.

byte[] byteArray; // the data
int offset = 0; // offset into array
int length = 1024; // length of array
Bitmap bm = BitmapFactory.decodeByteArray(byteArray, offset, length);

I think for This string should be Base64 Format. Have a look on this Link for More Info

起风了 2024-11-01 00:01:52

使用 BitmapFactory 您可以转换图像

using the BitmapFactory you can convert the image

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文