问题描述
- 选择相册中的png图片,返回的图片tempFilePath是.jpg结尾, 期望.png
- getImageInfo报错 fail: file not found
机型
测试机型 小米14标准版
wx.chooseMedia({
count: 1,
sourceType: ['album'],
mediaType: ['image'],
sizeType: ['original'],
success: (res) => {
const imagePath = res.tempFiles[0].tempFilePath
console.log(imagePath) // 得到.jpg结尾的临时路径
wx.getImageInfo({
src: imagePath,
success: (r) => {
// skip
},
fail(error) {
console.error(error) // 此时 getImageInfo:fail:file not found
}
})
}
})