使用vueCropper插件封装一个图片裁剪组件

1. 组件封装

<template>
  <div class="image-cropper-container">
    <vueCropper
      ref="cropper"
      class="image-cropper"
      :class="[direction]"
      :img="originImg"
      :output-size="option.outputSize"
      :output-type="option.outputType"
      :can-scale="option.canScale"
      :auto-crop="option.autoCrop"
      :auto-crop-width="option.autoCropWidth"
      :auto-crop-height="option.autoCropHeight"
      :full="option.full"
      :fixed-box="option.fixedBox"
      :can-move="option.canMove"
      :can-move-box="option.canMoveBox"
      :original="option.original"
      :center-box="option.centerBox"
      :high="option.high"
      :info-true="option.infoTrue"
      :mode="option.mode"
    />
    <div class="bottom-panel">
      <div class="btn-rotate" @click="handeRotateCropper">
        <img
          class="btn-rotate__img"
          src="../../../../assets/my/icon-cropper-rotate@2x.png"
          alt=""
        />
      </div>
      <div class="standard-text">拍摄标准</div>
      <ul class="standard-content">
        <li
          class="standard-item"
          v-for="item in standardInfo"
          :key="item.imgSrc"
        >
          <img class="standard-item__img" :src="item.imgSrc" alt="" />
          <div class="standard-item__desc" :class="[item.status]">
            {{ item.title }}
          </div>
        </li>
      </ul>
      <div class="handle-btns">
        <div class="handle-btns__btn cancel" @click="handleCropperCancel">
          取消
        </div>
        <div class="handle-btns__btn confirm" @click="handleCropperDone">
          确认
        </div>
      </div>
    </div>
  </div>
</template>

<script>
import { VueCropper } from 'vue-cropper'
import img_standard_1 from '../../../../assets/my/img-photo-standard-1.png'
import img_standard_2 from '../../../../assets/my/img-photo-standard-2.png'
import img_standard_3 from '../../../../assets/my/img-photo-standard-3.png'
import img_standard_4 from '../../../../assets/my/img-photo-standard-4.png'
import img_standard_5 from '../../../../assets/my/img-photo-standard-5.png'
const standardInfo = [
  {
    title: '正确拍摄',
    imgSrc: img_standard_1,
    status: 'success'
  },
  {
    title: '四角缺失',
    imgSrc: img_standard_2,
    status: 'fail'
  },
  {
    title: '照片模糊',
    imgSrc: img_standard_3,
    status: 'fail'
  },
  {
    title: '闪光强烈',
    imgSrc: img_standard_4,
    status: 'fail'
  },
  {
    title: '留白太多',
    imgSrc: img_standard_5,
    status: 'fail'
  }
]
export default {
  name: 'ImageCropper',
  components: {
    VueCropper
  },
  props: {
    originImg: {
      type: String,
      required: true
    },
    fileName: {
      type: String,
      default: ''
    },
    direction: {
      // 身份证正反
      type: String,
      default: 'idCardBackPic'
    }
  },
  data() {
    return {
      option: {
        outputSize: 1, // 裁剪生成图片的质量
        outputType: 'png', // 生成图片的格式
        info: false, // 不显示裁剪框的大小信息
        canScale: true, // 允许滚轮缩放
        autoCrop: true, // 不生成截图框
        autoCropWidth: window.innerWidth - 60, // 生成截图框宽度
        autoCropHeight: (402 / 635) * window.innerWidth - 40, // 生成截图框高度 402 / 635 是素材框的高、宽,先计算比例再乘宽,得出高度
        full: false, // 不输出原图比例的截图
        fixedBox: true, // 截图框大小允许改变
        canMove: true, // 上传图片是否可以移动
        canMoveBox: false, // 截图框能否拖动
        original: false, // 上传图片按照原始比例渲染
        centerBox: false, // 截图框被限制在图片里面
        high: true, // 按照设备的dpr 输出等比例图片
        infoTrue: false, // 展示看到的截图框宽高
        mode: 'cover' // 图片默认渲染方式
      },
      standardInfo
    }
  },
  methods: {
    handleCropperDone() {
      // 获取base64数据
      const promise1 = new Promise(resolve => {
        this.$refs.cropper.getCropData(data => {
          resolve(data)
        })
      })
      // 获取文件对象
      const promise2 = new Promise(resolve => {
        this.$refs.cropper.getCropBlob(data => {
          const suffix = {
            jpeg: 'jpg',
            png: 'png',
            webp: 'webp'
          }[this.option.outputType]
          const file = new File([data], `${this.fileName}.${suffix}`, {
            type: `image/${this.option.outputType}`
          })
          resolve(file)
        })
      })
      Promise.all([promise1, promise2]).then(res => {
        this.$emit('on-success', { content: res[0], file: res[1] })
      })
    },
    handleCropperCancel() {
      this.$emit('update:originImg', '')
    },
    handeRotateCropper() {
      this.$refs.cropper.rotateLeft()
    }
  }
}
</script>

<style lang="less" rel="stylesheet/less">
.image-cropper-container {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  .image-cropper {
    flex: 3;
    &.idCardFrontPic {
      .cropper-drag-box {
        background: url('../../../../assets/my/bg-cropper-front.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
      }
    }
    &.idCardBackPic {
      .cropper-drag-box {
        background: url('../../../../assets/my/bg-cropper-back.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
      }
    }
    // 重置样式
    .cropper-crop-box {
      .cropper-view-box {
        // 去掉截图框线条
        outline: none;
        img {
          display: none;
        }
      }
      .cropper-move,
      .crop-info {
        opacity: 0;
      }
    }
  }
  .bottom-panel {
    flex: 1;
    box-sizing: border-box;
    padding: 20px 16px 25px 20px;
    .btn-rotate {
      position: absolute;
      left: 20px;
      top: 65%;
      font-size: 32rpx;
      color: #fff;
      display: flex;
      align-items: center;
      &__img {
        width: 40px;
        height: 40px;
        margin-right: 10px;
      }
    }
    .standard-text {
      font-size: 24px;
      margin-bottom: 14px;
    }
    .standard-content {
      display: flex;
      flex-wrap: nowrap;
      .standard-item {
        flex: 0 0 20%;
        &__img {
          width: 75%;
          height: 66px;
        }
        &__desc {
          font-size: 24px;
          display: block;
          &::after {
            content: '';
            display: inline-block;
            width: 25px;
            height: 25px;
            margin-left: 2px;
            vertical-align: middle;
          }
          &.success::after {
            background: url('../../../../assets/my/icon_right@2x.png');
            background-repeat: no-repeat;
            background-size: cover;
          }
          &.fail::after {
            background: url('../../../../assets/my/icon_error@2x.png');
            background-repeat: no-repeat;
            background-size: cover;
          }
        }
      }
    }
    .handle-btns {
      margin-top: 30px;
      display: flex;
      flex-wrap: nowrap;
      &__btn {
        flex: 1;
        height: 78px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
      }
      .confirm {
        background: #61da79;
        border-radius: 10px;
        font-size: 30px;
        font-weight: 400;
        color: #ffffff;
      }
      .cancel {
        background: #ffffff;
        border: 1.5px solid #47cc61;
        border-radius: 10px;
        font-size: 30px;
        font-weight: 400;
        color: #47cc61;
      }
    }
  }
}
</style>

2. 使用插件

 <image-cropper
    :originImg.sync="currentCropperImgUrl"
    :file-name="originalFileNameInfo[currentHandleImgName]"
    :direction="currentHandleImgName"
    @on-success="handleCropperSuccess"
  />
...
data() {
  return {
    // 当前上传的方向
      currentHandleImgName: '',
      // 当前要裁剪的图片
      currentCropperImgUrl: '',
      // 真实的文件名
      originalFileNameInfo: {
        idCardFrontPic: '',
        idCardBackPic: ''
      },
  }
}
methods: {
  handleCropperSuccess(data) {
    this.idCardInfo[this.currentHandleImgName] = [data]
    this.currentCropperImgUrl = ''
  }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容