Change the rotation camera when you take a photo, becouse in some case you need to send img in vertical position!
const cameraPreviewPictureOptions: CameraPreviewPictureOptions = {
quality: 50,
rotationFrontCamera: 90; // When use front camera in vertical position to return picture in the same angle!
};
Change the rotation camera when you take a photo, becouse in some case you need to send img in vertical position!
const cameraPreviewPictureOptions: CameraPreviewPictureOptions = { quality: 50, rotationFrontCamera: 90; // When use front camera in vertical position to return picture in the same angle! };
I hope this is usuful.