Size size = mCamera.getParameters().getPreviewSize(); // 获取预览大小,若生成图片给的高宽和预览的高宽不一致,会导致生成的预览图出现花图的现象
final int w = size.width; // 宽度
final int h = size.height;
final YuvImage image = new YuvImage(data, ImageFormat.NV21,
w, h, null);
ByteArrayOutputStream os = new ByteArrayOutputStream();
if (!image.compressToJpeg(new Rect(0, 0, w, h), 100, os)) {
return;
}
byte[] tmp = os.toByteArray();