我是靠谱客的博主 清秀朋友,最近开发中收集的这篇文章主要介绍android图片转byte数组,android – 将图像的字节数组转换成imageview,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
尝试下面的代码转换位图到bytearray和bytearray到位图,它将解决你的问题。
将位图转换为ByteArray: –
Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
byte[] byteArray = stream.toByteArray();
将ByteArray转换为位图: –
Bitmap bmp = BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length);
ImageView image = (ImageView) findViewById(R.id.imageView1);
image.setImageBitmap(Bitmap.createScaledBitmap(bmp, image.getWidth(),
image.getHeight(), false)));
最后
以上就是清秀朋友为你收集整理的android图片转byte数组,android – 将图像的字节数组转换成imageview的全部内容,希望文章能够帮你解决android图片转byte数组,android – 将图像的字节数组转换成imageview所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复