微信小程序,调用chooseImage,设定sizeType: ['compressed']
电脑端操作,选择一张图片上传,发现没有压缩,还是原图大小;
但在手机端,选择相册中的图片上传,发现图片是成功进行了压缩的。
请教各位大神,是什么原因。谢谢!
附部分代码,如下:
choosethumb: function () {
let that = this;
wx.chooseImage({
sizeType: ['compressed'],
sourceType: ['album', 'camera'],
success: function (res) {
that.uploadThumb(res.tempFilePaths, 0);
}
})
},