91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue-cropper插件如何實現圖片截取上傳組件封裝

發布時間:2021-05-28 09:50:05 來源:億速云 閱讀:131 作者:小新 欄目:開發技術

小編給大家分享一下vue-cropper插件如何實現圖片截取上傳組件封裝,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

需求場景:

后臺開發需要上傳圖片并進行相應比例尺寸圖片的截取,本組件開發采用Ant Design Vue組件庫搭配vue-cropper插件進行封裝

實現如下

vue-cropper插件如何實現圖片截取上傳組件封裝

vue-cropper插件如何實現圖片截取上傳組件封裝

html

<template>
  <div>
    <a-upload
      name="avatar"
      list-type="picture-card"
      class="avatar-uploader"
      :show-upload-list="false"
      :custom-request="customRequest"
      :before-upload="beforeUpload"
      :
    >
      <img
        v-if="imageUrl && !loading"
        :src="imageUrl"
        alt="avatar"
        :
      />
      <div v-else>
        <a-icon :type="loading ? 'loading' : 'plus'" />
        <div class="ant-upload-text">上傳圖片</div>
      </div>
    </a-upload>
    <a-modal
      v-model="imageCut.isShowModal"
      title="圖片截取"
      width="400px"
      @ok="finish"
      @cancel="imageCut.close"
    >
      <div class="cropper-content" v-if="imageCut.isShowModal">
        <div class="cropper" >
          <vueCropper
            ref="cropper"
            :img="imageCut.imgFile"
            :outputSize="outputSize"
            :outputType="outputType"
            :info="info"
            :full="full"
            :canMove="canMove"
            :canMoveBox="canMoveBox"
            :original="original"
            :autoCrop="autoCrop"
            :fixed="fixed"
            :fixedNumber="fixedNumber"
            :centerBox="centerBox"
            :infoTrue="infoTrue"
            :fixedBox="fixedBox"
          ></vueCropper>
        </div>
      </div>
    </a-modal>
  </div>
</template>

js

<script>
import { uploadImage } from '@/api/common'
import { VueCropper } from "vue-cropper";
export default {
  name: 'ImageUpload',
  components: { VueCropper },
  data() {
    return {
      loading: false,
      imageCut: {
        isShowModal: false,
        imgFile: '',
        init: imgFile => {
          this.imageCut.imgFile = imgFile
          this.imageCut.isShowModal = true
        },
        close: () => {
          this.imageCut.imgFile = ''
          this.imageCut.isShowModal = false
        }
      }
    }
  },
  props: {
    imageUrl: String,
    width: {
      type: String,
      default: '100px'
    },
    height: {
      type: String,
      default: '100px'
    },
    canCut: {
      type: Boolean,
      default: false
    },
    info: {
      type: Boolean,
      default: false
    }, // 裁剪框的大小信息
    outputSize: {
      type: Number,
      default: 0.8
    }, // 裁剪生成圖片的質量
    outputType: {
      type: String,
      default: 'jpeg'
    }, // 裁剪生成圖片的格式
    canScale: {
      type: Boolean,
      default: true
    }, // 圖片是否允許滾輪縮放
    autoCrop: {
      type: Boolean,
      default: true
    }, // 是否默認生成截圖框
    // autoCropWidth: 300, // 默認生成截圖框寬度
    // autoCropHeight: 200, // 默認生成截圖框高度
    fixedBox: {
      type: Boolean,
      default: false
    }, // 固定截圖框大小 不允許改變
    fixed: {
      type: Boolean,
      default: true
    }, // 是否開啟截圖框寬高固定比例
    fixedNumber: {
      type: Array,
      default: () => [1, 1]
    }, // 截圖框的寬高比例
    full: {
      type: Boolean,
      default: true
    }, // 是否輸出原圖比例的截圖
    canMove: {
      type: Boolean,
      default: false
    },
    canMoveBox: {
      type: Boolean,
      default: true
    }, // 截圖框能否拖動
    original: {
      type: Boolean,
      default: false
    }, // 上傳圖片按照原始比例渲染
    centerBox: {
      type: Boolean,
      default: true
    }, // 截圖框是否被限制在圖片里面
    infoTrue: {
      type: Boolean,
      default: true
    } // true 為展示真實輸出圖片寬高 false 展示看到的截圖框寬高
  },
  methods: {
    beforeUpload(file) {
      const isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png'
      if (!isJpgOrPng) {
        this.$message.error('請上傳JPG或PNG文件!')
      }
      const isLt2M = file.size / 1024 / 1024 < 2
      if (!isLt2M) {
        this.$message.error('請上傳2MB以下文件!')
      }
      return isJpgOrPng && isLt2M
    },
    customRequest(file) {
      if (this.canCut) {
        this.readFile(file.file)
      } else {
        this.loading = true
        const formData = new FormData()
        formData.append('fileIdcard', file.file)
        uploadImage(formData).then(res => {
          this.loading = false
          this.$emit('uploadSuccess', res.ossUrl)
        })
      }
    },
    readFile(file) {
      var reader = new FileReader()
      reader.readAsDataURL(file)
      reader.onload = () => {
        this.imageCut.init(reader.result)
      }
    },
    finish() {
      this.$refs.cropper.getCropBlob(data => {
        this.loading = true
        // 上傳阿里云服務器
        const formData = new FormData()
        formData.append('fileIdcard', data)
        uploadImage(formData).then(res => {
          this.imageCut.close()
          this.loading = false
          this.$emit('uploadSuccess', res.ossUrl)
        })
      })
    }
  }
}
</script>

css

<style lang="less">
.avatar-uploader > .ant-upload {
  width: 100%;
  height: 100%;
}
.ant-upload-select-picture-card i {
  font-size: 32px;
  color: #999;
}

.ant-upload-select-picture-card .ant-upload-text {
  margin-top: 8px;
  color: #666;
}
.cropper-content {
  .cropper {
    width: auto;
    height: 400px;
  }
}
</style>

組件使用及說明

<image-upload
        :imageUrl="form.diagramUrl"
        @uploadSuccess="uploadSuccess"
        width="160px"
        height="90px"
        :can-edit="canCut"
        :fixed-number="[16,9]"
      />

組件調用時需傳入canEdit屬性,指定組件是否啟動圖片選取后的裁剪功能,默認值為不啟用裁剪;需裁剪時可傳入fixedNumber屬性,定義裁剪框的寬高比

看完了這篇文章,相信你對“vue-cropper插件如何實現圖片截取上傳組件封裝”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

井陉县| 云安县| 荔波县| 镇雄县| 兴仁县| 巴中市| 郯城县| 金门县| 沂源县| 双峰县| 交城县| 剑河县| 嘉祥县| 岳普湖县| 青铜峡市| 丘北县| 孟津县| 观塘区| 屏山县| 桐乡市| 壤塘县| 广河县| 东台市| 获嘉县| 乌兰察布市| 固安县| 府谷县| 五莲县| 文登市| 高安市| 贡山| 米脂县| 布拖县| 宝坻区| 襄汾县| 汶川县| 无为县| 临洮县| 英吉沙县| 百色市| 杭州市|