我正在尝试使用EXPO React Native应用程序拍照。
let uri = this.camera.takePictureAsync({
base64: true
}).then(data => {
this.sendVisionOCR(data)
}).catch(err => {
console.log("err", err)}
)
运行上面的函数时,记录base64结果需要很长时间,并且有时似乎只能工作。
怎么会更快?