我正在尝试使用相机互动开发Ionic2应用。但对于这个应用程序我只需要相机视图,无需拍照,自动对焦,选择前置或后置摄像头......只有相机。
我正在使用Ionic doc的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);
});
}
但是我找不到能够删除这些资源的东西。这个人知道允许这个的任何方法或自定义插件吗?