Showing camera view inside html in android and then snap a picture

前端 未结 4 534
春和景丽
春和景丽 2020-12-02 15:17

Is there a view of showing the live camera view inside html ( e.g. embedded in a div ) before we snap a picture using JavaScript? I have tried PhoneGap but it totally starts

4条回答
  •  一整个雨季
    2020-12-02 15:27

    You can use camera.getPicture from cordova-plugin-camera or navigator.device.capture.captureVideo from cordova-plugin-media-capture.

    var getUserMedia = navigator.getUserMedia 
            || navigator.webkitGetUserMedia 
            || navigator.mozGetUserMedia 
            || navigator.msGetUserMedia 
            || navigator.device.capture.captureVideo 
            || navigator.camera 
            || camera.getPicture;
    

    Hope it helps.

提交回复
热议问题