nuxt使用vue-cropper
- 下载vue-cropper;
npm install vue-cropper
- nuxt.config.js配置载入vue-cropper全局组件
module.exports = {
plugins: [
'@/plugins/element-ui',
{
src: '@/plugins/axios',
ssr: true
},
'~/plugins/router.js',
{ src: '~/plugins/cropper.js', ssr: false }
],
}
- 实现plugins/cropper.js,剪裁组件是纯前端的操作,所以不需要ssr,也没有必要加载到服务端渲染
import Vue from 'vue';
import vueCropper from 'vue-cropper';
if(process.browser){
Vue.use(vueCropper);
}
vue-cropper属性介绍
- vue-cropper剪裁组件的属性介绍;
属性名称 |
描述 |
可选值 |
img |
裁剪图片的地址 |
url地址,支持blob和base64 |
output-size |
裁剪生成图片的质量 |
默认值1.可选值0~1之间 |
output-type |
裁剪生成图片的格式 默认jpeg |
jpeg, png, webp |
info |
裁剪框的大小信息 |
默认是true,可选true和false |
canScale |
图片是否允许滚轮缩放 |
默认是true,可选true和false |
can-move |
上传图片是否可以移动 |
默认是true,可选true和false |
can-move-box |
截图框能否拖动 |
默认是true,可选true和false |
fixed-box |
固定截图框大小 |
不允许改变 |
auto-crop |
是否默认生成截图框 |
默认是false,可选true和false |
auto-crop-width |
默认生成截图框宽度 |
默认是容器的 80% |
auto-crop-height |
默认生成截图框高度 |
默认容器的 80% |
center-box |
截图框是否被限制在图片里面 |
默认是false,可选true和false |
high |
是否按照设备的dpr 输出等比例图片 |
默认是true,可选true和false |
info-true |
true 为展示真实输出图片宽高 false 展示看到的截图框宽高 |
默认是false,可选true和false |
enlarge |
图片根据截图框输出比例倍数 |
默认是1,可选0~max |
fixed |
是否开启截图框宽高固定比例 |
默认是false,可选true和false |
fixed-number |
截图框的宽高比例 |
默认[1,1],可选宽度和高度 |
实现cropper剪裁组件的封装
- 剪裁组件的封装;
<template>
<div class="Cropper">
<el-dialog :visible.sync="dialogVisible" width="740px" title="图片裁剪" :before-close="handleClose"
:close-on-click-modal="dialogVisible" top="5vh">
<div class="cropper-subtitle">
<div>
<span class="cropper-babel">温馨提示1:</span>
<span>可以通过鼠标滑动滚轮放大图片进行裁剪</span>
</div>
<div>
<span class="cropper-babel">温馨提示2:</span>
<span>图片宽度必须在300以上</span>
</div>
</div>
<div class="cropper-container">
<div class="cropper-el">
<vue-cropper ref="cropper"
:img="cropperImg"
:fixed-box="option.fixedBox"
:auto-crop="option.autoCrop"
:auto-crop-width="option.autoCropWidth"
:auto-crop-height="option.autoCropHeight"
:info-true="option.infoTrue"
:center-box="option.centerBox"
:high="option.high"
:fixed-number="option.fixedNumber"
:limitMinSize="option.limitMinSize" />
</div>
</div>
<span slot="footer" class="dialog-footer">
<el-button @click="uploadBth">重新上传</el-button>
<el-button @click="handleClose">取 消</el-button>
<el-button type="primary" @click="saveImg">确 定</el-button>
</span>
</el-dialog>
</div>
</template>
<script>
export default {
name: 'Cropper',
props: {
// 弹框
dialogVisible: {
type: Boolean,
default: false
},
// 剪裁完成之后返回图片的数据格式,默认为blob
imgType: {
type: String,
default: 'blob'
},
// 需要剪裁图片的路径
cropperImg: {
type: String,
default: ''
},
// 裁剪比例,默认1:1
zoomScale: {
type: Array,
default: () => ([1, 1])
}
},
data() {
return {
previews: {},
option: {
img: '', // 裁剪图片的地址
fixedBox: false, // 固定截图框大小 不允许改变
autoCrop: true, // 是否默认生成截图框
autoCropWidth: 300, // 默认生成截图框宽度
autoCropHeight: 320, // 默认生成截图框高度
centerBox:true,// 截图框是否被限制在图片里面
limitMinSize: 600, // 更新裁剪框最小属性
high:false,// 是否按照设备的dpr 输出等比例图片
infoTrue: true, // true 为展示真实输出图片宽高 false 展示看到的截图框宽高
fixedNumber: this.zoomScale // 截图框的宽高比例
},
};
},
methods: {
// 重新上传
uploadBth() {
this.$emit('update-cropper');
},
// 取消关闭弹框
handleClose() {
this.$emit('colse-dialog', false);
},
// 获取裁剪之后的图片,默认blob,也可以获取base64的图片
saveImg() {
if (this.imgType === 'blob') {
// 返回blob的数据格式,cropper默认只支持两种返回的数据,具体后面可以转成file
this.$refs.cropper.getCropBlob(data => {
// 返回数据和图片宽度和高度
this.$emit('upload-img', {data,cro:{width:this.$refs.cropper.cropW,height:this.$refs.cropper.cropH}});
});
} else {
// 返回base64的数据格式
this.$refs.cropper.getCropData(data => {
// 返回数据和图片宽度和高度
this.$emit('upload-img', {data,cro:{width:this.$refs.cropper.cropW,height:this.$refs.cropper.cropH}});
});
}
},
}
};
</script>
<style lang="scss" scoped>
.Cropper {
margin:0;
.cropper-el {
height: 500px;
width: 700px;
flex-shrink: 0;
}
.cropper-subtitle{
margin-top: -25px;
margin-bottom: 10px;
.cropper-babel{
color:red;
}
}
.cropper-container {
display: flex;
justify-content: space-between;
.prive-el {
flex: 1;
align-self: center;
text-align: center;
.prive-style {
margin: 0 auto;
flex: 1;
-webkit-flex: 1;
display: flex;
display: -webkit-flex;
justify-content: center;
-webkit-justify-content: center;
overflow: hidden;
background: #ededed;
margin-left: 40px;
}
.preview {
overflow: hidden;
}
.el-button {
margin-top: 20px;
}
}
}
}
</style>
el-upload组件和cropper组件的联合使用
- el-upload组件和cropper组件;
<template>
<div>
<!-- 注意:必须关闭自动上传属性 auto-upload -->
<el-upload
:http-request="Upload"
name="files"
:multiple="false"
list-type="picture-card"
:limit="12"
:before-upload="beforeAvatarUpload"
ref="fileUpload"
:auto-upload="false"
:on-change="selectChange"
action="aaa"
class="cropper-upload-box"
>
<i slot="default" class="el-icon-plus"></i>
</el-upload>
<cropper
v-if="showCropper"
:dialog-visible="showCropper"
:cropper-img="cropperImg"
:zoomScale="zoomScale"
@update-cropper="updateCropper"
@colse-dialog="closeDialog"
@upload-img="uploadImg"
/>
</div>
</template>
<script>
import Cropper from "@/components/cropper/index.vue";
export default {
name: "UploadCropper",
data() {
return {
showCropper: false, // 是否显示裁剪框
cropperImg: "", // 需要裁剪的图片
noCanUpload:false,//当前没有在上传的状态
currentFile:[],//当前已经上传成功并且剪裁成功的图片文件列表
uploadFile:null,//剪裁之后返回的图片数据(Blob数据格式对象)
cro:{},//这里存放的是剪裁完成之后图片的宽度和高度
};
},
props: {
// 裁剪比例,默认1:1
zoomScale: {
type: Array,
default: [1, 1]
}
},
components: {
Cropper
},
methods: {
// 上传图片之前校验图片大小是否超过了2M
beforeAvatarUpload(file) {
// 原图片
const isLt2M = file.size / 1024 / 1024 < 2;
//裁剪后的图片(会比原图片大很多,应该是转成Blob的原因导致)
if (!isLt2M) {
this.$message.error("上传图片大小不能超过 2MB!");
this.noCanUpload = true // 如果这里被拦截,将自动删除不能上传的图片
return false
}
return isLt2M
},
// 手动实现上传,将剪裁完毕的图片和图片宽高属性派发给调用组件
Upload(file) {
let obj = {
...this.cro,
file:this.uploadFile
}
this.$emit('getUploadImg',obj)
},
// 点击重新上传图片进行剪裁
updateCropper() {
if(!this.noCanUpload){
let fileList = this.$refs.fileUpload.uploadFiles // 获取文件列表
let index02 = fileList.findIndex(item => { // 把取消裁剪的图片删除
return item.uid == this.currentFile.uid;
});
fileList.splice(index02, 1)
}
let index = this.$refs.fileUpload.$children.length - 1;
this.$refs.fileUpload.$children[index].$el.click();
},
// 关闭窗口,删掉剪裁的图片
closeDialog() {
this.showCropper = false;
if(!this.noCanUpload){
// 获取文件列表
let fileList = this.$refs.fileUpload.uploadFiles;
let index = fileList.findIndex(item => {
return item.uid == this.currentFile.uid;
});
fileList.splice(index, 1)
}
},
// 拿到剪裁之后的图片,这里返回的图片文件是Blob格式
uploadImg({data,cro}) {
this.uploadFile = data;
this.cro = cro;
//裁剪后的图片宽,高 ==> 取最小值
let minProp = Math.min(cro.width, cro.height)
// 如果最小值比设置的最小值(默认为300)小
if( minProp < 300){
this.$message.error(`图片宽度最小不能小于300px`);
return false
}
this.$refs.fileUpload.submit();
this.closeDialog();
},
// 监听上传改变,把上传的图片转换blob数据格式并且生成url路径传递给cropper组件
selectChange(file) {
this.noCanUpload = false
let files = file.raw;
var reader = new FileReader();
reader.onload = e => {
let data;
if (typeof e.target.result === "object") {
// 把Array Buffer转化为blob 如果是base64不需要
data = window.URL.createObjectURL(new Blob([e.target.result]));
} else {
data = e.target.result;
}
this.cropperImg = data;
};
//转换file文件为缓存buffer流,方便生成blob数据格式
reader.readAsArrayBuffer(files);
// 默认开启裁剪
this.showCropper = true;
// 组装数据,重新上传的时候会用到
let list = this.$refs.fileUpload.uploadFiles.length>0?this.$refs.fileUpload.uploadFiles:[];
list.forEach(item=>{
this.currentFile.push(item)
})
}
}
};
</script>
<style lang="scss">
.cropper-upload-box{
display: flex;
.el-upload{
width: 148px;
height: 148px;
}
}
</style>
调用上传剪裁组件推送服务端
- 调用上传剪裁组件,这里使用的是eggjs,下面我会贴出egg代码;
<template>
<div class="main-container">
<upload-cropper :zoomScale="zoomScale" @getUploadImg="getUploadImg"></upload-cropper>
<img :src="cropperImage.src" alt="" :style="{'width':cropperImage.width+'px'}">
</div>
</template>
<script>
import uploadCropper from "@/components/upload/index.vue";
export default {
components: {
uploadCropper
},
data() {
return {
zoomScale: [1, 1.2],
cropperImage:{
width:300,
height:300,
src:''
}
}
},
methods: {
getUploadImg({file,width,height}) {
let formData = new FormData();
let fileOfBlob = new File([file],"img.jpeg", {type:"image/jpeg"})
formData.append('files',fileOfBlob );
this.$axios({
url: '/upload/stream',
method: 'post',
headers: {
'Content-Type': 'multipart/form-data;boundary='+new Date().getTime()
},
data: formData,
}).then(res => {
if(res.res.status===200){
// 返回数据剪裁图片的url,剪裁图片的宽度和剪裁图片的高度
this.cropperImage ={
src:res.url,
width,
height
}
}
})
}
}
}
</script>
<style lang="scss">
.main-container {
width: 1200px;
margin: -10px auto 0 auto;
.main-wrapper {
display: flex;
}
}
</style>
egg服务端接收到数据之后推送到阿里云oss
- 服务端接收数据;
'use strict';
const Controller = require('egg').Controller;
const fs = require('fs')
const path = require('path')
class CommonController extends Controller {
//上传流文件推送oss
async uploadStream(){
const { ctx } = this;
//上传的不能是文件,必须是二进制流
const stream = await ctx.getFileStream();
// 生成指定的图片文件名称
const name = 'egg-oss-baiyan/'+ctx.getID(10)+ path.basename(stream.filename);
let result;
try{
// 推送阿里云
result = await ctx.oss.put(name, stream);
}catch(err){
console.log(err);
}
// 在ctx扩展封装返回前台的数据
return ctx.apiSuccess(result);
}
}
module.exports = CommonController;
补充egg对数据流的配置
- egg对数据流的配置;
// 配置egg前台上传文件服务端接收的数据格式类型为流恶方式
config.multipart = {
fileSize:'50mb',
mode: 'stream',
}