Android yuv转Bitmap

2023-05-16


   

YuvImage image = new YuvImage(data, ImageFormat.NV21, size.width, size.height, null);
                if(image!=null){
                    ByteArrayOutputStream stream = new ByteArrayOutputStream();
                    image.compressToJpeg(new Rect(0, 0, size.width, size.height), 80, stream);

                    Bitmap bmp = BitmapFactory.decodeByteArray(stream.toByteArray(), 0, stream.size());
                    //TODO:此处可以对位图进行处理,如显示,保存等

                    stream.close();  

 

转载于:https://www.cnblogs.com/sysu-huangwei/p/8078640.html

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

Android yuv转Bitmap 的相关文章

随机推荐