小程序是实现点击预览长按保存图片

2018-12-15  本文已影响0人  梦里梦不到的梦_b5c8

setTimeout(function () {

        wx.canvasToTempFilePath({  //把当前画布指定区域的内容导出生成指定大小的图片

          x: 0,

          y: 0,

          destWidth: 375 * 2,//输出图片宽度

          destHeight: 603 * 2,//输出图片高度

          canvasId: 'canvas', //画布标识

          fileType: 'jpg', //保存的图片格式,默认是png

          success: function (res) {  //接口调用成功的回调函数

            console.log(res.tempFilePath);

            that.setData({

              controls: false

            })

            wx.previewImage({

              current: res.tempFilePath, // 当前显示图片的http链接 

              urls: [res.tempFilePath],// 需要预览的图片http链接列表 

              success:function(){

              }

            })

          }

        })

上一篇下一篇

猜你喜欢

热点阅读