我正在尝试开发具有相机交互的Ionic2应用程序。但是对于此应用程序,我只需要相机视图,而无需拍照,自动对焦,选择前置摄像头...只有相机。
我正在使用来自离子文档的Cordova插件:
takePicture(){
Camera.getPicture({
//destinationType: Camera.DestinationType.DATA_URL,
destinationType: 2,
quality: 100,
//sourceType: 2,
saveToPhotoAlbum: true,
correctOrientation: true,
encodingType: 1,
allowEdit: false,
targetWidth: 1000,
targetHeight: 1000
}).then((imageData) => {
this.base64Image = "data:image/jpeg;base64," + imageData;
}, (err) => {
console.log(err);
});
}
,但是我找不到能够删除此资源的东西。有人知道任何允许此的方法或自定义插件吗?
您是否尝试过此插件?
https://github.com/cordova-plugin-camera-preview/cordova-plugin-camera-preview
还有一个示例应用
https://github.com/cordova-plugin-camera-preview/cordova-plugin-camera-preview-sample-app-app