You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
camera = new Camera.Builder()
.resetToCorrectOrientation(true)// it will rotate the camera bitmap to the correct orientation from meta data
.setTakePhotoRequestCode(99)
//.setDirectory("pics")
//.setName("dir_" + System.currentTimeMillis())
.setImageFormat(Camera.IMAGE_JPEG)
.setCompression(75)
.setImageHeight(1000)// it will try to achieve this height as close as possible maintaining the aspect ratio;
.build(CaptureActivity.this);
got me the full size bitmap camera.getCameraBitmap();
The text was updated successfully, but these errors were encountered:
even doing this
got me the full size bitmap
camera.getCameraBitmap();
The text was updated successfully, but these errors were encountered: