Android中将YUV数据Bitmap byte[]数据转换成Bitmap图片
欢迎Follow我的GitHub, 关注我的****. 其余参考Android目录 我们微信公众号:杨守乐
转载请注明出入谢谢! http://blog.****.net/xiaole0313/article/details/73655889
推荐文章:
Android Studio 2.3 正式起航(玩爆Android Studio 2.3必备)
public Bitmap yuvToBitmap(byte[] data, int width, int height) { int frameSize = width * height; int[] rgba = new int[frameSize]; for (int i = 0; i < height; i++) for (int j = 0; j < width; j++) { int y = (0xff & ((int) data[i * width + j])); int u = (0xff & ((int) data[frameSize + (i >> 1) * width + (j & ~1) + 0])); int v = (0xff & ((int) data[frameSize + (i >> 1) * width + (j & ~1) + 1])); y = y < 16 ? 16 : y; int r = Math.round(1.164f * (y - 16) + 1.596f * (v - 128)); int g = Math.round(1.164f * (y - 16) - 0.813f * (v - 128) - 0.391f * (u - 128)); int b = Math.round(1.164f * (y - 16) + 2.018f * (u - 128)); r = r < 0 ? 0 : (r > 255 ? 255 : r); g = g < 0 ? 0 : (g > 255 ? 255 : g); b = b < 0 ? 0 : (b > 255 ? 255 : b); rgba[i * width + j] = 0xff000000 + (b << 16) + (g << 8) + r; } Bitmap bmp = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888); bmp.setPixels(rgba, 0 , width, 0, 0, width, height); return bmp; }
由于得到的数据是unsigned char *类型的数据,而对于Bitmap的类来说,其类方法里面:
public static Bitmap createBitmap(int colors[], int offset, int stride, int width, int height, Bitmap.Config config)
要求传入的是int *数据,这里我们就需要将unsigned char *数据转换为RGB的int值了。
java里面的方法可以采取如下代码:
public static int byteToInt(byte data){ int heightBit = (int) ((data>>4) & 0x0F); int lowBit = (int) (0x0F & data); return heightBit * 16 + lowBit; } public static int[] byteToColor(byte[] data){ int size = data.length; if (size == 0){ return null; } int arg = 0; if (size % 3 != 0){ arg = 1; } int []color = new int[size / 3 + arg]; int red, green, blue; if (arg == 0){ for(int i = 0; i < color.length; ++i){ red = byteToInt(data[i * 3]); green = byteToInt(data[i * 3 + 1]); blue = byteToInt(data[i * 3 + 2]); color[i] = (red << 16) | (green << 8) | blue | 0xFF000000; } }else{ for(int i = 0; i < color.length - 1; ++i){ red = byteToInt(data[i * 3]); green = byteToInt(data[i * 3 + 1]); blue = byteToInt(data[i * 3 + 2]); color[i] = (red << 16) | (green << 8) | blue | 0xFF000000; } color[color.length - 1] = 0xFF000000; } return color; } Bitmap decodeFrameToBitmap(byte[] frame) { int []colors = byteToColor(frame); if (colors == null){ return null; } Bitmap bmp = Bitmap.createBitmap(colors, 0, 1280, 1280, 720,Bitmap.Config.ARGB_8888); return bmp; }
4、如何自学Android, 教大家玩爆Android(成为大神必看)
5、2016 Google hosts 持续更新【更新 于:2016-08-27】(免费翻墙必备)
8、Android Studio 2.2 正式起航(玩爆Android Studio 2.2必备)
9、Android Studio 2.3 正式起航(玩爆Android Studio 2.3必备)
Android Studio 2.2 新功能实例代码:
Android Studio 2.2新功能实例源码(玩爆Android Studio 2.2必备)
Android Studio 2.2新功能介绍:
What's new in Android development tools - Google I/O 2016(YouTube视频需要自备梯子)
【GitHub】https://github.com/xiaole0310
【****博客】http://blog.****.net/xiaole0313
【新浪微博】http://weibo.com/xiaole0313
【知乎】http://www.zhihu.com/people/yang-shou-le
【简书】http://www.jianshu.com/users/1a47e8afa34a
【技术群】279126311 [满]
【技术群】484572225 [未]
【Email】[email protected]
Android Studio 2.2 新功能实例代码:
Android Studio 2.2新功能实例源码(玩爆Android Studio 2.2必备)
如果你有好的文章想和大家分享,欢迎投稿,直接向我投递文章链接即可。
欢迎扫描关注我们的微信公众号(ysle_0313),不要错过每一篇干货~