我想将base64 URL转换为react native中的图像文件。有没有一个包或一种简单的方法来实现这一点?
您可以这样尝试使用react-native-fs
:
import RNFS from 'react-native-fs';
const imageDate = '<some base64 data>';
const imagePath = `${RNFS.TemporaryDirectoryPath}image.jpg`;
RNFS.writeFile(imagePath, imageData, 'base64')
.then(() => console.log('Image converted to jpg and saved at ' + imagePath));