美文网首页
android dump yuv buffer为jpeg图片

android dump yuv buffer为jpeg图片

作者: 技术笔记 | 来源:发表于2019-10-14 16:20 被阅读0次

    开始还准备自己写转换函数,yuv转rgb,然后再压缩,最后发现直接import android.graphics.YuvImage, 就可以快速的压缩成jpeg图片。

        public void dumpYuvToJpeg(byte[] data, int width, int height) {
            YuvImage image = new YuvImage(data, ImageFormat.NV21, width, height, null);
            if(image!=null) {
                FileOutputStream stream = null;
                try {
                    stream = new FileOutputStream("/sdcard/"  + mDumpIdx +  ".jpg" );
                    if (stream != null) {
                        image.compressToJpeg(new Rect(0, 0, width, height), 80, stream);
                        stream.close();
                    }
                    mDumpIdx++;
                } catch (FileNotFoundException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    

    相关文章

      网友评论

          本文标题:android dump yuv buffer为jpeg图片

          本文链接:https://www.haomeiwen.com/subject/jljrmctx.html