Left and right front camera Android camera preview image preview image preview image preview vertically

Share a practical approach on the camera image preview:

Before the preview camera settings to add the following settings (the following is your view SurfaceView or TextureView):

1, about a preview image;

  view.setScaleX(-1);

2, the vertical image previews:

view.setScaleY(-1);

3, up and down are the mirror Preview:

view.setScaleX(-1);

view.setScaleY(-1);

 ...

Published 21 original articles · won praise 22 · views 50000 +

Guess you like

Origin blog.csdn.net/m13984458297/article/details/101282149