我一直在尝试使用 React Native 和 Expo 在移动设备上保存图像,我尝试过使用这些包:
import RNFetchBlob from 'react-native-fetch-blob';
import RNfs from 'react-native-fs ';
但是在实施它们时都给了我这个错误
null is not an object (evaluating 'RNFetchBlob.DocumentDir')
然后尝试 expo-file-system 但我没有看到任何关于如何转换 base64 并将其下载到移动设备的明确示例
更新
我能够做到,我的目的是保存 QR 的 base64 并将其转换为 png,同时能够共享它,我使用expo-file-system
和expo-sharing
这是mi代码,
import * as FileSystem from 'expo-file-system';
import * as Sharing from 'expo-sharing';
//any image, I use it to initialize it
const image_source = 'https://images.unsplash.com/photo-1508138221679-760a23a2285b?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&w=1000&q=80';
share=()=>{
var self = this;
self.setState({loading:true})
FileSystem.downloadAsync(
image_source,
FileSystem.documentDirectory + '.png'
)
.then(({ uri }) => {
console.log(self.state.base64Code);
FileSystem.writeAsStringAsync(
uri,
self.state.base64Code,
{'encoding':FileSystem.EncodingType.Base64}
)
.then(( ) => {
this.setState({loading:false})
Sharing.shareAsync(uri);
})
})
.catch(error => {
console.error(error);
});
}
其实不知道是不是最好的办法,先在目录下写个png图片,然后用base64代码重写,但是好用