美文网首页Vue
vant+vue-cropper-h5实现图片上传前裁剪

vant+vue-cropper-h5实现图片上传前裁剪

作者: 风中凌乱的男子 | 来源:发表于2020-12-11 09:29 被阅读0次
要实现的亚子:
image.png
image.png
image.png
废话不说,上代码,先封装一个公用组件
<template>
  <div class="main">
    <div class="cropper" style="position: relative;overflow: hidden; text-align: center;width:100%;height:100%;" :style="obj">
      <van-image v-if="show" :src="img" class="img" style="position: absolute;width: 100%;height:100%;left: 0;top: 0;" />
      <van-loading v-else color="#65abff" style="" />
      <!-- option是配置,格式是对象,getbase64Data是组件的一个方法获取裁剪完的头像 -->
      <h5-cropper @getbase64="getbase64Data" :option="option" @getblob="getBlob" @get-file="getFile"></h5-cropper>
    </div>
  </div>
</template>

<script>
// import { getsign } from "@/api/common";
//import TcVod from 'vod-js-sdk-v6'
export default {
  props: {
    fixedNumber: {
      type: Array,
      default: () => [1, 1]
    },
    image: {
      type: String,
      default: "http://erkong.ybc365.com/36bc0202010231838302739.png"
    },
    radius: {
      type: Number,
      default: 0
    }
  },
  data() {
    return {
      show: true,
      obj: {
        borderRadius: `${this.radius}px`
      },
      img: this.image,
      option: {
        ceilbutton: true,//操作按钮是否在顶部    
        fixedNumber: this.fixedNumber,//截图框的宽高比例    
        canMoveBox: true,//截图框能否拖动  
        fixedBox: false,//固定截图框大小 不允许改变 
        centerBox: true,//截图框是否被限制在图片里面 
        fixed: false,//是否开启截图框宽高固定比例    
      }
    }
  },
  methods: {
    getbase64Data(data) {
      this.img = data;
    },
    getBlob(blob) {
      // console.log(blob)
      this.$emit('getBlob')
    },
    getFile(file) {
      // console.log(file)
      // this.$emit('getFile')
      // this.show = false
      // this.uploader = this.tcVod.upload({
      //   mediaFile: file,
      // })
      // // 上传进度
      // this.uploader.on('media_progress', (info) => {
      //   console.log('上传进度' + "=>" + info.percent * 100);
      // })
      // // 上传完成时
      // this.uploader.on('media_upload', (info) => {
      //   console.log('上传完成时' + "=>" + info);
      //   this.$toast.success('上传成功!')
      // })
      // this.uploader.done().then((doneResult) => {
      //   this.img = (doneResult.video.url);
      //   this.show = true
      this.$emit('getImageUrl', file)
      // })
    }
  },
  // created() {
  //   //获取签名
  //   function getSignature() {
  //     return getsign(JSON.stringify({
  //       "Action": "GetUgcUploadSign"
  //     })).then(function(response) {
  //       return response.data.sign
  //     })
  //   };
  //   this.tcVod = new TcVod({
  //     getSignature: getSignature
  //   });
  // },
}
</script>

<style lang="scss" scoped>
.main {
  width: 100%;
  height: 100%;
  ::v-deep .van-loading {
    margin-top: 20%;
  }
}
</style>
然后在其他页面引入组件,直接用
<!-- 上传图片、视频 -->
        <h1 class="title">上传图片:</h1>
        <van-field class="titleImg" readonly input-align="right">
          <template #button>
            <div style="display: flex;">
              <div class="avatar" style="width:80px;height:80px;margin-right:20px;">
                <CropperH5 ref="avatarImage" :fixedNumber="[1,1]" @getImageUrl='getAvatarImageUrl1' :image='avatarImage' />
              </div>
              <div class="avatar" style="width:80px;height:80px;">
                <CropperH5 ref="avatarImage" :fixedNumber="[1,1]" @getImageUrl='getAvatarImageUrl2' :image='avatarImage' />
              </div>
            </div>
          </template>
        </van-field>
data() {
    return {
      avatarImage: "https://ss3.bdstatic.com/70cFv8Sh_Q1YnxGkpoWK1HF6hhy/it/u=319223871,3949806150&fm=26&gp=0.jpg",
      img1: '',
      img2: ''
    }
  },
methods:{
//获取头像url
    async getAvatarImageUrl1(file) {
      var formData = new FormData();
      formData.append('file', file); // 固定格式
      const res = await upload(formData)
      if (res) {
        this.img1 = (res.data[0])
        console.log(res);
      }
    },
    async getAvatarImageUrl2(file) {
      var formData = new FormData();
      formData.append('file', file); // 固定格式
      const res = await upload(formData)
      if (res) {
        this.img2 = (res.data[0])
        console.log(res);
      }
    },
}
::v-deep .titleImg {
  padding: 10px 0;
  .van-cell__value {
    display: flex;
  }
  .van-field__control {
    display: none;
  }
  ::v-deep .cropper-crop-box {
    width: 300px;
    height: 300px;
  }
}

相关文章

网友评论

    本文标题:vant+vue-cropper-h5实现图片上传前裁剪

    本文链接:https://www.haomeiwen.com/subject/ktodgktx.html