有没有办法直接在onPreviewFrame方法中获取预览帧? 我试过了:
camera.setDisplayOrientation(90);
但这似乎仅适用于显示器。文件报告:
以度为单位设置预览显示的顺时针旋转。这影响了 预览帧和快照后显示的图片。这个 方法对肖像模式应用程序非常有用。
这不会影响onPreviewFrame (byte [],Camera),JPEG图片或录制视频中传递的字节数组的顺序。 在预览期间不允许调用此方法。
我的目标是API等级> = 8,我有一个纵向锁定应用。我想避免手动旋转作为帧传递的数据字节数组。 非常感谢提前。
答案 0 :(得分:-1)
试试这个会起作用
public void takeSnapPhoto() {
camera.setOneShotPreviewCallback(new Camera.PreviewCallback() {
@Override
public void onPreviewFrame(byte[] data, Camera camera) {
Camera.Parameters parameters = camera.getParameters();
int format = parameters.getPreviewFormat();
//YUV formats require more conversion
if (format == ImageFormat.NV21 || format == ImageFormat.YUY2 || format == ImageFormat.NV16) {
int w = parameters.getPreviewSize().width;
int h = parameters.getPreviewSize().height;
// Get the YuV image
YuvImage yuv_image = new YuvImage(data, format, w, h, null);
// Convert YuV to Jpeg
Rect rect = new Rect(0, 0, w, h);
ByteArrayOutputStream output_stream = new ByteArrayOutputStream();
yuv_image.compressToJpeg(rect, 100, output_stream);
byte[] byt = output_stream.toByteArray();
FileOutputStream outStream = null;
try {
// Write to SD Card
File file = createFileInSDCard(FOLDER_PATH, "Image_"+System.currentTimeMillis()+".jpg");
//Uri uriSavedImage = Uri.fromFile(file);
outStream = new FileOutputStream(file);
outStream.write(byt);
outStream.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
}
}
}
});}