gpt4 book ai didi

android - camera.getPicture 如何使用 apache cordova 在 android 中工作?

转载 作者:行者123 更新时间:2023-11-29 20:50:39 25 4
gpt4 key购买 nike

使用 apache cordova 插件,我可以打开相机功能,但是当我拍照时,应用程序会重新启动..

navigator.camera.getPicture( cameraSuccess, cameraError, cameraOptions );

最佳答案

我也有同样的问题。但是,我终于得到了相机插件的解决方案。我的代码在下面。

  $(document).on('click','.capture_photo',function(){
navigator.camera.getPicture(onPhotoDataSuccess, onFail, {
quality : 75,
destinationType : Camera.DestinationType.DATA_URL,
sourceType : Camera.PictureSourceType.CAMERA,
encodingType: Camera.EncodingType.PNG,
popoverOptions: CameraPopoverOptions,
saveToPhotoAlbum: false
});
});
// to call the success function of capture image(onPhotoDataSuccess)
function onPhotoDataSuccess(imageData) {
sessionStorage.setItem("img_api",imageData);
$('#captureimg').attr('src','data:image/jpeg;base64,' + imageData);
App.show_toast("Profile image updated successfully!");
}

希望有用

关于android - camera.getPicture 如何使用 apache cordova 在 android 中工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29228425/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com