小程序图片压缩

 

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]);
      }
    });
  }
});

 

 

 

#####################

posted @ 2023-10-04 21:22  西北逍遥  阅读(68)  评论(0编辑  收藏  举报