共计 4252 个字符,预计需要花费 11 分钟才能阅读完成。
背景
vue-cropper 是一款基于 vue 的优雅图片裁剪插件,可用来实现头像等性能。
效果图
装置应用
装置
npm install vue-cropper // npm 装置
yarn add vue-cropper // yarn 装置
援用
// 全局援用 main.js
import VueCropper from 'vue-cropper'
Vue.use(VueCropper)
// 部分援用
import VueCropper from 'vue-cropper'
components: {VueCropper},
组件内应用
1. 上传按钮
<!-- element 上传图片按钮 -->
<el-upload class="upload-demo"
action=""
drag
:auto-upload="false"
:show-file-list="false"
:on-change='handleChangeUpload'>
<i class="el-icon-upload"></i>
<div class="el-upload__text"> 点击上传 </div>
<div class="el-upload__tip"> 反对绝大多数图片格式,单张图片最大反对 5MB</div>
</el-upload>
2. 设置一个弹出层,放剪裁图片的 cropper
<!-- vueCropper 剪裁图片实现 -->
<el-dialog title="图片剪裁" :visible.sync="dialogVisible" class="crop-dialog" append-to-body>
<div class="cropper-content">
<div class="cropper" style="text-align:center">
<vueCropper
ref="cropper"
:img="option.img"
:outputSize="option.size"
:outputType="option.outputType"
:info="true"
:full="option.full"
:canMove="option.canMove"
:canMoveBox="option.canMoveBox"
:original="option.original"
:autoCrop="option.autoCrop"
:fixed="option.fixed"
:fixedNumber="option.fixedNumber"
:centerBox="option.centerBox"
:infoTrue="option.infoTrue"
:fixedBox="option.fixedBox"
:autoCropWidth="option.autoCropWidth"
:autoCropHeight="option.autoCropHeight"
@cropMoving="cropMoving"
/>
</div>
</div>
<div class="action-box">
<el-upload class="upload-demo"
action="":auto-upload="false":show-file-list="false":on-change='handleChangeUpload'>
<el-button type="primary" plain> 更换图片 </el-button>
</el-upload>
<el-button type="primary" plain @click="clearImgHandle"> 革除图片 </el-button>
<el-button type="primary" plain @click="rotateLeftHandle"> 左旋转 </el-button>
<el-button type="primary" plain @click="rotateRightHandle"> 右旋转 </el-button>
<el-button type="primary" plain @click="changeScaleHandle(1)"> 放大 </el-button>
<el-button type="primary" plain @click="changeScaleHandle(-1)"> 放大 </el-button>
<el-button type="primary" plain @click="downloadHandle('blob')"> 下载 </el-button>
</div>
<div slot="footer" class="dialog-footer">
<el-button @click="dialogVisible = false"> 取 消 </el-button>
<el-button type="primary" @click="finish" :loading="loading"> 确认 </el-button>
</div>
</el-dialog>
3. 剪裁框的款式
.cropper-content {
.cropper {
width: auto;
height: 350px;
}
}
4. 办法
option 是剪裁插件的属性配置,具体更多含意查看官网介绍
<script>
export default {
name: "Cropper",
data() {
return {
isPreview: false,
dialogVisible: false,
previewImg: '', // 预览图片地址
// 裁剪组件的根底配置 option
option: {
img: 'https://pic1.zhimg.com/80/v2-366c0aeae2b4050fa2fcbfc09c74aad4_720w.jpg', // 裁剪图片的地址
info: true, // 裁剪框的大小信息
outputSize: 1, // 裁剪生成图片的品质
outputType: 'png', // 裁剪生成图片的格局
canScale: true, // 图片是否容许滚轮缩放
autoCrop: true, // 是否默认生成截图框
canMoveBox: true, // 截图框是否拖动
autoCropWidth: 200, // 默认生成截图框宽度
autoCropHeight: 200, // 默认生成截图框高度
fixedBox: false, // 固定截图框大小 不容许扭转
fixed: true, // 是否开启截图框宽高固定比例
fixedNumber: [1, 1], // 截图框的宽高比例
full: false, // 是否输入原图比例的截图
original: false, // 上传图片依照原始比例渲染
centerBox: false, // 截图框是否被限度在图片外面
infoTrue: true // true 为展现实在输入图片宽高 false 展现看到的截图框宽高
},
// 避免反复提交
loading: false
}
},
methods: {
// 上传按钮 限度图片大小和类型
handleChangeUpload(file, fileList) {
const isJPG = file.raw.type === 'image/jpeg' || file.raw.type === 'image/png';
const isLt2M = file.size / 1024 / 1024 < 2;
if (!isJPG) {this.$message.error('上传头像图片只能是 JPG/PNG 格局!');
return false
}
if (!isLt2M) {this.$message.error('上传头像图片大小不能超过 2MB!');
return false
}
// 上传胜利后将图片地址赋值给裁剪框显示图片
this.$nextTick(async () => {
// base64 形式
// this.option.img = await fileByBase64(file.raw)
this.option.img = URL.createObjectURL(file.raw)
this.loading = false
this.dialogVisible = true
})
},
// 放大 / 放大
changeScaleHandle(num) {
num = num || 1;
this.$refs.cropper.changeScale(num);
},
// 左旋转
rotateLeftHandle() {this.$refs.cropper.rotateLeft();
},
// 右旋转
rotateRightHandle() {this.$refs.cropper.rotateRight();
},
// 下载
downloadHandle(type) {let aLink = document.createElement('a')
aLink.download = 'author-img'
if (type === 'blob') {this.$refs.cropper.getCropBlob((data) => {let downImg = window.URL.createObjectURL(data)
aLink.href = window.URL.createObjectURL(data)
aLink.click()})
} else {this.$refs.cropper.getCropData((data) => {
let downImg = data;
aLink.href = data;
aLink.click()})
}
},
// 清理图片
clearImgHandle() {this.option.img = ''},
// 截图框挪动回调函数
cropMoving(data) {
// 截图框的左上角 x,y 和右下角坐标 x,y
// let cropAxis = [data.axis.x1, data.axis.y1, data.axis.x2, data.axis.y2]
// console.log(cropAxis)
},
finish() {
// 获取截图的 blob 数据
this.$refs.cropper.getCropBlob((blob) => {
this.loading = true
this.dialogVisible = false
this.previewImg = URL.createObjectURL(blob)
this.isPreview = true
})
// 获取截图的 base64 数据
// this.$refs.cropper.getCropData(data => {// console.log(data)
// })
}
}
}
</script>
注:练习代码指路
正文完