我正在使用react-native-camera
库捕获图片并保存到android DCMI文件夹中,但保存在捕获内存中
takePicture = async function () {
if (this.camera) {
const options = { quality: 0.5, base64: true };
this.camera.takePictureAsync(options).then(data => {
console.log('data: ', data);
});
}};