Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了android – 没有Bitmap.CompressFormat 将位图转换为字节数组大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_618_1@
参见英文答案 > Converting bitmap to byteArray android                                    3个
有没有办法将位图转换为字节数组而不使用Android中的Bitmap.CompressFormat类?如果没有,怎么样?如果有可能,请告诉我如何,thanx

解决方法

像这样的东西?

//b is the Bitmap

//calculate how many bytes our image consists of.
int bytes = b.getByteCount();
//or we can calculate bytes this way. Use a different value than 4 if you don't use 32bit images.
//int bytes = b.getWidth()*b.getHeight()*4; 

ByteBuffer buffer = ByteBuffer.allocate(bytes); //Create a new buffer
b.copyPixelsToBuffer(buffer); //Move the byte data to the buffer

byte[] array = buffer.array(); //Get the underlying array containing the data.

从; https://stackoverflow.com/a/10192092/1868384

大佬总结

以上是大佬教程为你收集整理的android – 没有Bitmap.CompressFormat 将位图转换为字节数组全部内容,希望文章能够帮你解决android – 没有Bitmap.CompressFormat 将位图转换为字节数组所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。