gpt4 book ai didi

reactjs - react 原生相机胶卷 .heic 文件

转载 作者:行者123 更新时间:2023-12-03 17:35:16 25 4
gpt4 key购买 nike

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

关于reactjs - react 原生相机胶卷 .heic 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48906547/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com