1

我通过从相机胶卷中选择 gif 在 IOS 上获取 gif 图像时遇到问题。结果我只得到缩略图。

我尝试使用react-native-fs和方法copyAssetsFileIOS

handleSelect = (item) => () => {
        const filePath = `${APP_DIRECTORY_PATH}/${item.id}.${item.extension}`;

        if (Platform.OS === 'ios' && item.extension === 'gif') {
            return RNFS.copyAssetsFileIOS(item.uri, filePath, 0, 0)
                .then((response) => {
                    item.uri = filePath;
                    return this.props.goAddPhotos(item)
                })
                .catch((e) => console.log(e))
        }


        return this.props.goAddPhotos(item);
    };

// APP_DIRECTORY_PATH -${RNFS.DocumentDirectoryPath}/app

4

0 回答 0