Issues taking picture with Android (Vertical Camera | Portrait)

后端 未结 4 1568
心在旅途
心在旅途 2021-01-06 06:25

With the following code shows a preview of the camera vertically and it\'s works.. BUT!! I get a photo in landscape! :(

How I can build it vertically? I\'ve the prev

4条回答
  •  梦谈多话
    2021-01-06 06:28

    For setting the orientation of the image use below code:

    Matrix mat = new Matrix();
    mat.postRotate(90);
    image_to_upload = Bitmap.createBitmap(myImage, 0, 0, myImage.getWidth(), myImage.getHeight(), mat, true);
    

提交回复
热议问题