通过chooseImage获取的图片地址,传给的这个方法,安卓和开发工具都是好的,iOS压缩后大小没变
基础库2.21.1,2.19.6 都试过了
ios版本15.1.1
export function canvasCompress(imgObj) {
return new Promise( (resolve, reject) => {
// 自定义压缩图片,目前仅支持.jpg
if(/(.jpg|.JPG|.JPEG|.jpeg)$/.test(imgObj.path)) {
uni.compressImage({
src: imgObj.path,
quality: 60,
success: res => {
console.log(res.tempFilePath,'compressImage---1')
resolve(res.tempFilePath)
},
fail: res => {
reject(res.errMsg)
}
})
}else {
resolve(imgObj.path)
}
})
}
同问,苹果没压,有什么办法?
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)