繁体   English   中英

反应原生相机胶卷 .heic 文件

[英]react native camera roll .heic files

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

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

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);
}});

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM