[TIL] Cordova Camera Preview Image Rotate Issue

Funnystyle·2021년 2월 16일
0

cordova 앱에서 camera preview image 는 항상 landscape 기준으로 사진이 돌아가게 되어 있다.
이럴 때 다음 옵션을 사용하면 사진을 찍을 때의 방향을 유지하게 된다.

const cameraOptions = {

  ... (other options)
  
  encodingType: Camera.EncodingType.JPEG, // <<-- 이거랑
  correctOrientation: true // <<-- 이거랑
}

navigator.camera.getPicture( 
  function(path) {
  },
  function(err) {
  }, 
  cameraOptions
)

출처: https://stackoverflow.com/questions/37074245/cordova-camera-plugin-force-orientation-of-camera-to-portrait#46979747

profile
polyglot

0개의 댓글