小程序图片压缩
wx.getImageInfo({ src: '图片路径', success: function (res) { // 获取图片信息 console.log(res.width, res.height); // 压缩图片 wx.compressImage({ src: res.path, quality: 80, // 压缩质量,范围是0-100 success: function (res) { // 压缩后的图片路径 console.log(res.tempFilePaths[0]); } }); } });
#####################
QQ 3087438119