camera-ui icon indicating copy to clipboard operation
camera-ui copied to clipboard

Picture on android is rotated

Open vohtaski opened this issue 8 years ago • 5 comments

Android is in the portrait mode, camera as well. The final picture gets rotated.

If I rotate camera into horizontal position, it works ok.

same issue on mdg:camera

any idea how to solve? android 5.0.2, samsung galaxy s5

vohtaski avatar Mar 14 '16 21:03 vohtaski

facing same issue even on android 7.0 as well on lower versions? @vohtaski have you fixed it ?

abduljanjua avatar May 07 '17 18:05 abduljanjua

I actually don't remember fixing it, but it works now for me

vohtaski avatar May 08 '17 07:05 vohtaski

Hello! I still have the problem. Any update?

vigile avatar Jul 14 '17 20:07 vigile

Any update here?

CineXMike avatar Sep 25 '18 12:09 CineXMike

I fixed with correctOrientation: true in options

var options = {
        width: 250,
        height: 250,
        cameraDirection: 1,
        correctOrientation: true,
        quality: 75,
        cancel: "Cancel",
        takeImage: "Take Photo",
        imageLibrary: "Library"
    }

MeteorCameraUI.getPicture(options, myCallback);

zabuTNT avatar Mar 01 '19 15:03 zabuTNT