VUE VANT上传图片 压缩
时间: 2023-11-11 07:06:32 浏览: 204
Vue 图片压缩并上传至服务器功能
在Vue前端开发中,可以使用Vant组件库中的Uploader组件来实现图片上传功能。同时,为了减小上传文件的大小,可以使用JavaScript中的canvas API对图片进行压缩处理。具体步骤如下:
1. 在Vue项目中引入Vant组件库和exif-js库。
2. 在Uploader组件中设置上传图片的最大尺寸和格式。
3. 在上传前,使用exif-js库获取图片的方向参数,并根据方向参数对图片进行旋转。
4. 使用canvas API对图片进行压缩处理,并将压缩后的图片上传至服务器。
代码示例:
```
<template>
<van-uploader
:max-size="2 * 1024 * 1024"
:accept="['jpg', 'jpeg', 'png']"
:before-upload="beforeUpload"
:on-success="onSuccess"
/>
</template>
<script>
import EXIF from 'exif-js';
import { Toast } from 'vant';
export default {
methods: {
beforeUpload(file) {
return new Promise((resolve, reject) => {
const reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = (event) => {
const img = new Image();
img.src = event.target.result;
img.onload = () => {
const canvas = document.createElement('canvas');
const ctx = canvas.getContext('2d');
let width = img.width;
let height = img.height;
let orientation = 1;
EXIF.getData(file, function() {
orientation = EXIF.getTag(this, 'Orientation');
});
if ([5, 6, 7, 8].indexOf(orientation) > -1) {
canvas.width = height;
canvas.height = width;
} else {
canvas.width = width;
canvas.height = height;
}
switch (orientation) {
case 2:
ctx.transform(-1, 0, 0, 1, width, 0);
break;
case 3:
ctx.transform(-1, 0, 0, -1, width, height);
break;
case 4:
ctx.transform(1, 0, 0, -1, 0, height);
break;
case 5:
ctx.transform(0, 1, 1, 0, 0, 0);
break;
case 6:
ctx.transform(0, 1, -1, 0, height, 0);
break;
case 7:
ctx.transform(0, -1, -1, 0, height, width);
break;
case 8:
ctx.transform(0, -1, 1, 0, 0, width);
break;
default:
break;
}
ctx.drawImage(img, 0, 0, width, height);
const base64 = canvas.toDataURL('image/jpeg', 0.8);
const blob = this.dataURLtoBlob(base64);
resolve(blob);
};
};
});
},
onSuccess(response) {
Toast.success('上传成功');
},
dataURLtoBlob(dataURL) {
const arr = dataURL.split(',');
const mime = arr[0].match(/:(.*?);/)[1];
const bstr = atob(arr[1]);
let n = bstr.length;
const u8arr = new Uint8Array(n);
while (n--) {
u8arr[n] = bstr.charCodeAt(n);
}
return new Blob([u8arr], { type: mime });
},
},
};
</script>
```
阅读全文