cordova 앱에서 camera preview image 는 항상 landscape 기준으로 사진이 돌아가게 되어 있다.
이럴 때 다음 옵션을 사용하면 사진을 찍을 때의 방향을 유지하게 된다.
const cameraOptions = {
... (other options)
encodingType: Camera.EncodingType.JPEG, // <<-- 이거랑
correctOrientation: true // <<-- 이거랑
}
navigator.camera.getPicture(
function(path) {
},
function(err) {
},
cameraOptions
)