首页 > 解决方案 > 使用本机反应将base64转换为图像文件

问题描述

我有问题将base 64转换为图像文件我只有图像base64,我想将其转换为文件,因为我想将该文件发布在表单数据中我需要将base64转换为文件我从这段代码中获取base64并将base64放入国家

takePhotoFromLibrary = () => {
    ImagePicker.openPicker({
        width: 300,
        height: 400,
        cropping: true,
        includeBase64: true
    }).then(image => {
        console.log(image);
        this.setState({ image: image.data });
        
        
    });
}

现在我想将base64转换为图像文件

标签: react-nativereact-reduxbase64

解决方案


推荐阅读