1:先安装vue-cropper
npm install vue-cropper --save
2:
方式一:在main.js里加入:
import VueCropper from 'vue-cropper'
Vue.use(VueCropper)
方式二:在组件里使用
import {VueCropper} from "vue-cropper";
components: {
VueCropper
},
3:使用方式二:完整代码
<template>
<div>
<div class="home-tab-body-img">
<div class="imgList" v-for="(item,index) in fileImgList" :key="index">
<div class="imgList-delete" @click="deleteImg(item)">
<a-icon type="delete" title="删除" />
</div>
<img :src="getReadImg(item.filePath)" alt @click="handlePictureCardPreview(item.filePath)" />
<a-modal title="图片裁剪" v-model="dialogVisible" >
<img width="100%" :src="getReadImg(filePathAdd)" alt />
</a-modal>
</div>
<a-upload
:multiple="false"
class="editor-slide-upload"
:before-upload="beforeAvatarUploadPS"
list-type="picture-card"
action
:limit="3"
>
<p>(最多3张)</p>
</a-upload>
</div>
<!-- 剪切图片的弹框-->
<div class="upload-dialog">
<a-modal title="图片裁剪" v-model="isShowCropper" :on-ok="false" footer=''>
<div class="vue-cropper-box">
<div class="vue-cropper-content" style="height:400px;">
<vueCropper
ref="cropper"
:img="option.img"
:outputSize="option.size"
:outputType="option.outputType"
:info="option.info"
:full="option.full"
:canMove="option.canMove"
:canMoveBox="option.canMoveBox"
:centerBox="option.centerBox"
:original="option.original"
:autoCrop="option.autoCrop"
:autoCropWidth="option.autoCropWidth"
:autoCropHeight="option.autoCropHeight"
:fixedBox="option.fixedBox"
:fixed="option.fixed"
:fixedNumber="option.fixedNumber"
@realTime="realTime"
@imgLoad="imgLoad"
></vueCropper>
</div>
<div class="operate-wrap">
<div class="lf">
<a-button type="primary" plain @click="turnLeft">左旋转</a-button>
<a-button type="primary" plain @click="turnRight">右旋转</a-button>
<a-button type="primary" plain @click="changeScale(1)">放大</a-button>
<a-button type="primary" plain @click="changeScale(-1)">缩小</a-button>
<a-button type="primary" @click="onCubeImg">上传</a-button>
</div>
<div class="rt">
<a-button type="primary" @click="cancleCropper">取消</a-button>
</div>
</div>
</div>
</a-modal>
</div>
</div>
</template>
<script>
import {VueCropper} from "vue-cropper";
// import Api from '@/js/api.js' //接口url配置文件
export default {
data() {
return {
fileImgList:[],
isShowCropper:false,
//裁剪组件的基础配置option
option: {
img: "", // 裁剪图片的地址
info: true, // 裁剪框的大小信息
outputSize:1, // 剪切后的图片质量(0.1-1)
full: true, // 输出原图比例截图 props名full
outputType: "jpg", // 裁剪生成额图片的格式
canMove: false, // 能否拖动图片
original: false, // 上传图片是否显示原始宽高
canMoveBox: true, // 能否拖动截图框
centerBox:true,//截图框是否限制在图片里面
autoCrop: true, // 是否默认生成截图框
autoCropWidth: 740, // 默认生成截图框宽度
autoCropHeight: 400, // 默认生成截图框高度
fixedBox: false, // 截图框固定大小
fixed:true,
fixedNumber:[1,1]//截图框的宽高比例
}
};
},
components: {
VueCropper
},
methods: {
beforeAvatarUploadPS(file) {
if (this.imgLength > 2) {
this.$message({
type: "warning",
message: "效果图最多上传3张"
});
return false;
}
this.option.img = URL.createObjectURL(file);
console.log(this.option.img);
const isDWG = file.name.split(".");
const format = isDWG[isDWG.length - 1];
// this.uploadParams.isFile = "1";
// uploadParams.file="";
if (format != "png" && format != "jpg") {
this.$message.error("上传文件只能是 png或jpg 格式!");
return false;
}
this.isShowCropper = true;
// const dialog = new Promise((resolve,reject)=>{
// });
// return dialog
},
// 然后我加了几个剪切的按钮进行旋转或放大,并把上传方法一并粘贴到如下:
turnLeft() {
this.$refs.cropper.rotateLeft();
},
turnRight() {
this.$refs.cropper.rotateRight();
},
cancleCropper() {
//取消截图
this.isShowCropper = false;
},
changeScale(num) {
num = num || 1;
this.$refs.cropper.changeScale(num);
},
imgLoad(msg) {
console.log("imgLoad");
console.log(msg);
},
// 实时预览函数
realTime(data) {
console.log("realTime");
this.previews = data;
},
onCubeImg() {
//剪切上传
// 获取cropper的截图的base64 数据
this.$refs.cropper.getCropData(data => {
// this.fileinfo.url = data;
//先将显示图片地址清空,防止重复显示
this.option.img = "";
//将剪裁后base64的图片转化为file格式
let file = this.convertBase64UrlToBlob(data);
// this.fileImg=URL.createObjectURL(file);
var formData = new FormData();
formData.append("file", file);
formData.append("isFile", "1");
projectResource.uploadImg(this.prjID, formData).then(res => {
if (res.result == "0") {
this.$message({
type: "success",
message: "上传成功"
});
this.fileTypeSearch();
this.isShowCropper = false;
// this.fileList=[{name: 'food.jpg', url: 'https://xxx.cdn.com/xxx.jpg'}]
}
});
});
},
// 将base64的图片转换为file文件
convertBase64UrlToBlob(urlData) {
let bytes = window.atob(urlData.split(",")[1]); //去掉url的头,并转换为byte
//处理异常,将ascii码小于0的转换为大于0
let ab = new ArrayBuffer(bytes.length);
let ia = new Uint8Array(ab);
for (var i = 0; i < bytes.length; i++) {
ia[i] = bytes.charCodeAt(i);
}
return new Blob([ab], { type: "image/jpeg" });
}
// 处理完这些你就可以看看你的也页面了
}
};
</script>
<style lang="less">
</style>
网友评论