反应原生相机卷.heic文件

时间:2018-02-21 12:58:13

标签: reactjs react-native ios11 camera-roll

IOS 11上的新.HEIC文件导致问题,因为图像托管服务不支持它。

相机胶卷api正在返回.HEIC文件。我们怎样才能获得.JPG / .PNG。或者将.HEIC转换为.JPG / .PNG

1 个答案:

答案 0 :(得分:0)

ImagePicker.showImagePicker(options, imgResponse => {

this.setState({ imageLoading: true, avatarMediaId: null });

if ((imgResponse.didCancel) || (imgResponse.error)) {
    this.setState({ imageLoading: false });
} else {
    let source = {};
    let fileName = imgResponse.fileName;
    if (Platform.OS === 'ios' && (fileName.endsWith('.heic') || fileName.endsWith('.HEIC'))) {
        fileName = `${fileName.split(".")[0]}.JPG`;
    }
    source = { uri: imgResponse.uri, fileName };
    this.uploadImage(source);
}});