头像 _微信小程序 调用图片编辑">
当前位置:   article > 正文

微信小程序引用we-cropper工具进行图片裁剪_微信小程序 调用图片编辑

微信小程序 调用图片编辑
  1. 下载we-cropper资源 :微信小程序图片裁剪we-cropper工具
  2. 创建两个页面,一个上传图片页面,一个裁剪图片页面
    (1)上传图片页面
    选择图片,将得到的src地址传递到裁剪图片页面

add.wxml

<view class="th1">
  <view class="td1">头像</view>
  <view class="td2" bindtap="setPhotoInfo">
      <image src="{{url}}"></image>
  </view>
</view>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

add.js

onLoad: function (options) {
    if (options) {
      this.setData({
        url: options.src
      })
    }
  },

setPhotoInfo() {
    let that = this
    wx.chooseImage({
      count: 1, // 默认9
      sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
      sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
      success: function (res) {
        const src = res.tempFilePaths[0];
        wx.navigateTo({
            url: '../upload/upload?src=' + src
        })
      }
    })
  },
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

(2)裁剪页面

upload.wxml

<import src='../../weCropper/we-cropper.wxml'/>
<view class="cropper-wrapper" style="min-height:100vh;background-color: #000;">
    <template is="we-cropper" data="{{...cropperOpt}}"/>
    <view class="cropper-buttons" style="width: 100%;position:absolute;bottom:100rpx;">
        <button size="mini" style="background-color:#fff0;color:#fff;" bindtap="uploadTap">选择</button>
        <button size="mini" type="primary" style="float: right;" bindtap="getCropperImage">上传</button>
    </view>
</view>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

upload.js

import WeCropper from '../../weCropper/we-cropper.js';
const device = wx.getSystemInfoSync() // 获取设备信息
const width = device.windowWidth // 示例为一个与屏幕等宽的正方形裁剪框
const height = width
 
Page({
    data: {
        cropperOpt: {
            id: 'cropper', // 用于手势操作的canvas组件标识符
            targetId: 'targetCropper', // 用于用于生成截图的canvas组件标识符
            pixelRatio: device.pixelRatio, // 传入设备像素比
            width, // 画布宽度
            height, // 画布高度
            src: '',
            scale: 2.5, // 最大缩放倍数
            zoom: 8, // 缩放系数
            cut: {
                x: (width - 320) / 2, // 裁剪框x轴起点
                y: (width - 320) / 2, // 裁剪框y轴起点
                width: 320, // 裁剪框宽度
                height: 320 // 裁剪框高度
            }
        }
    },
    // 页面onLoad函数中实例化WeCropper
    onLoad: function(options) {
        const {
          cropperOpt
        } = this.data;
        cropperOpt.src = options.src;
        if (cropperOpt.src) {
          this.cropper = new WeCropper(cropperOpt)
            .on('ready', (ctx) => {
              console.log(`wecropper is ready for work!`)
            })
            .on('beforeImageLoad', (ctx) => {
              wx.showToast({
                title: '上传中',
                icon: 'loading',
                duration: 3000
              })
            })
            .on('imageLoad', (ctx) => {
              wx.hideToast()
            })
        }
    },
    // 插件通过touchStart、touchMove、touchEnd方法来接收事件对象。
    touchStart(e) {
        this.cropper.touchStart(e)
    },
    touchMove(e) {
        this.cropper.touchMove(e)
    },
    touchEnd(e) {
        this.cropper.touchEnd(e)
    },
    // 自定义裁剪页面的布局中,可以重新选择图片
    uploadTap() {
        const that = this
        wx.chooseImage({
            count: 1, // 默认9
            sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
            sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
            success(res) {
                const src = res.tempFilePaths[0]
                that.cropper.pushOrign(src)
            }
        })
    },
    
    // 生成图片
    getCropperImage() {
        this.cropper.getCropperImage(tempFilePath => {
            // tempFilePath 为裁剪后的图片临时路径
            if (tempFilePath) {
                 // 拿到裁剪后的图片路径的操作
                 console.log(tempFilePath)
                 wx.navigateTo({
                   url: '../add/add?src=' + tempFilePath
                 })
            }else{
                console.log('获取图片地址失败,请稍后重试')
            }
        })
    }
})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/565182
推荐阅读
相关标签