我可以使用camera.parameters可能的相机翻转?

时间:2016-12-21 01:00:28

标签: android camera

我想要Camera Preview左右颠倒。 (镜像模式)

之前,我尝试使用TextureView

private Camera mCamera;
private TextureView mTextureView;

@Override 
public void onSurfaceTextureAvailable(SurfaceTexture surfaceTexture, int width, int height) {
Matrix matrix = new Matrix();
matrix.setScale(-1, 1);
matrix.postTranslate(width, 0);
mTextureView.setTransform(matrix);

此源相机预览镜像模式确定。

但我不想仅使用TextureView framelayout。

或许,可能的相机预览反向仅使用Camera.Parameters()?

如果不可能。如何在framelayout上翻转相机?

0 个答案:

没有答案