如何在React Native中将base64 url转换为图像(png/jpg)文件



我想将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));

相关内容

  • 没有找到相关文章

最新更新