Results 5 comments of uncle-chen

就是多图上传的时候可以压缩图片 默认限制500px 可以自定义

要使用canvas进行压缩

附上压缩代码 compressImg( ratio = 2, limitNum = 100, ) { let that = this; wx.getImageInfo({ src: imagePathArr[i], success: res => { var canvasWidth = res.width; //图片原始长宽 var canvasHeight = res.height;...

目前我只能进行单图片压缩,多图片压缩是返回的图片都是一样的 不知道这个bug 如何解决