午夜剧场伦理_日本一道高清_国产又黄又硬_91黄色网战_女同久久另类69精品国产_妹妹的朋友在线

您的位置:首頁技術(shù)文章
文章詳情頁

vue-cropper插件實(shí)現(xiàn)圖片截取上傳組件封裝

瀏覽:12日期:2022-09-29 11:16:30

基于vue-cropper插件實(shí)現(xiàn)圖片截取上傳組件封裝的具體代碼,供大家參考,具體內(nèi)容如下

需求場景:

后臺(tái)開發(fā)需要上傳圖片并進(jìn)行相應(yīng)比例尺寸圖片的截取,本組件開發(fā)采用Ant Design Vue組件庫搭配vue-cropper插件進(jìn)行封裝

實(shí)現(xiàn)如下

vue-cropper插件實(shí)現(xiàn)圖片截取上傳組件封裝

vue-cropper插件實(shí)現(xiàn)圖片截取上傳組件封裝

html

<template> <div> <a-upload name='avatar' list-type='picture-card' :show-upload-list='false' :custom-request='customRequest' :before-upload='beforeUpload' : > <imgv-if='imageUrl && !loading':src='http://www.leifengta.com.cn/bcjs/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' @ok='finish' @cancel='imageCut.close' > <div v-if='imageCut.isShowModal'><div style='text-align:center'> <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 }, // 裁剪生成圖片的質(zhì)量 outputType: { type: String, default: ’jpeg’ }, // 裁剪生成圖片的格式 canScale: { type: Boolean, default: true }, // 圖片是否允許滾輪縮放 autoCrop: { type: Boolean, default: true }, // 是否默認(rèn)生成截圖框 // autoCropWidth: 300, // 默認(rèn)生成截圖框?qū)挾? // autoCropHeight: 200, // 默認(rèn)生成截圖框高度 fixedBox: { type: Boolean, default: false }, // 固定截圖框大小 不允許改變 fixed: { type: Boolean, default: true }, // 是否開啟截圖框?qū)捀吖潭ū壤? fixedNumber: { type: Array, default: () => [1, 1] }, // 截圖框的寬高比例 full: { type: Boolean, default: true }, // 是否輸出原圖比例的截圖 canMove: { type: Boolean, default: false }, canMoveBox: { type: Boolean, default: true }, // 截圖框能否拖動(dòng) original: { type: Boolean, default: false }, // 上傳圖片按照原始比例渲染 centerBox: { type: Boolean, default: true }, // 截圖框是否被限制在圖片里面 infoTrue: { type: Boolean, default: true } // true 為展示真實(shí)輸出圖片寬高 false 展示看到的截圖框?qū)捀? }, 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 = trueconst 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// 上傳阿里云服務(wù)器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' :can-edit='canCut':fixed-number='[16,9]' />

組件調(diào)用時(shí)需傳入canEdit屬性,指定組件是否啟動(dòng)圖片選取后的裁剪功能,默認(rèn)值為不啟用裁剪;需裁剪時(shí)可傳入fixedNumber屬性,定義裁剪框的寬高比

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Vue
相關(guān)文章:
主站蜘蛛池模板: 天天干天天操天天舔 | 欧美精品一二三 | 欧美日韩精品区 | 亚洲成人国产 | 日韩成人精品一区二区 | 在线观看av资源 | 小说av| 亚洲男人天堂2018 | 免费在线看黄视频 | 天堂av一区二区 | 国产精品xxxx | 国产精品三 | 日本亚洲欧美在线 | 日本草逼视频 | 国产激情片 | 浪漫樱花在线观看高清动漫 | 久操视频在线播放 | 国产乱码精品一区二三区蜜臂 | 超碰天堂| 国产成年人在线观看 | 精品资源成人 | 国产夫绿帽单男3p精品视频 | 亚洲色图欧美另类 | 亚洲欧洲在线播放 | 色婷婷av一区二区 | 国产高潮呻吟久久久 | 都市激情亚洲综合 | 亚洲自拍偷拍综合 | 三级亚洲欧美 | 天天综合天天色 | 久久久久麻豆v国产精华液好用吗 | 99久久成人 | 91麻豆视频在线观看 | 欧美三级在线免费观看 | 欧美视频一二区 | 亚洲高清免费 | www久久久| 国产福利资源在线 | 国产午夜三级 | 日批在线看 | 亚洲综合另类 |