vue 2 모 바 일 업로드,미리 보기,압축 이미지 구현 사진 회전 문제 해결
npm install exif-js --save
설치 한 다음import
한 번 에 사용 할 수 있 습 니 다.다음은 소스 코드 로 직접 사용 할 수 있 습 니 다.
<template>
<div>
<div style="padding:20px;">
<div class="show">
<div class="picture" :style="'backgroundImage:url('+headerImage+')'"></div>
</div>
<div style="margin-top:20px;">
<input type="file" id="upload" accept="image" @change="upload">
<label for="upload"></label>
</div>
</div>
</div>
</template>
<script>
import Exif from 'exif-js'
export default {
data () {
return {
headerImage:'',
}
},
mounted () {
},
methods: {
upload (e) {
let files = e.target.files || e.dataTransfer.files;
if (!files.length) return;
this.picValue = files[0];
this.imgPreview(this.picValue);
},
imgPreview (file) {
let self = this;
let Orientation;
// ,
Exif.getData(file, function(){
Orientation = Exif.getTag(this, 'Orientation');
});
// FileReader
if (!file || !window.FileReader) return;
if (/^image/.test(file.type)) {
// reader
let reader = new FileReader();
// 2 base64
reader.readAsDataURL(file);
//
reader.onloadend = async function () {
let result = this.result;
let img = new Image();
img.src = result;
// 100K, ,
if (this.result.length <= (100 * 1024)) {
self.headerImage = this.result;
self.postImg();
}else {
img.onload = function () {
let data = self.compress(img,Orientation);
self.headerImage = data;
self.postImg();
}
}
}
}
},
postImg () {
//
},
rotateImg (img, direction,canvas) {
// , 4
const min_step = 0;
const max_step = 3;
if (img == null)return;
//img img ,
let height = img.height;
let width = img.width;
let step = 2;
if (step == null) {
step = min_step;
}
if (direction == 'right') {
step++;
// ,
step > max_step && (step = min_step);
} else {
step--;
step < min_step && (step = max_step);
}
//
let degree = step * 90 * Math.PI / 180;
let ctx = canvas.getContext('2d');
switch (step) {
case 0:
canvas.width = width;
canvas.height = height;
ctx.drawImage(img, 0, 0);
break;
case 1:
canvas.width = height;
canvas.height = width;
ctx.rotate(degree);
ctx.drawImage(img, 0, -height);
break;
case 2:
canvas.width = width;
canvas.height = height;
ctx.rotate(degree);
ctx.drawImage(img, -width, -height);
break;
case 3:
canvas.width = height;
canvas.height = width;
ctx.rotate(degree);
ctx.drawImage(img, -width, 0);
break;
}
},
compress(img,Orientation) {
let canvas = document.createElement("canvas");
let ctx = canvas.getContext('2d');
// canvas
let tCanvas = document.createElement("canvas");
let tctx = tCanvas.getContext("2d");
let initSize = img.src.length;
let width = img.width;
let height = img.height;
// , 400
let ratio;
if ((ratio = width * height / 4000000) > 1) {
console.log(" 400 ")
ratio = Math.sqrt(ratio);
width /= ratio;
height /= ratio;
} else {
ratio = 1;
}
canvas.width = width;
canvas.height = height;
//
ctx.fillStyle = "#fff";
ctx.fillRect(0, 0, canvas.width, canvas.height);
// 100
let count;
if ((count = width * height / 1000000) > 1) {
console.log(" 100W ");
count = ~~(Math.sqrt(count) + 1); //
//
let nw = ~~(width / count);
let nh = ~~(height / count);
tCanvas.width = nw;
tCanvas.height = nh;
for (let i = 0; i < count; i++) {
for (let j = 0; j < count; j++) {
tctx.drawImage(img, i * nw * ratio, j * nh * ratio, nw * ratio, nh * ratio, 0, 0, nw, nh);
ctx.drawImage(tCanvas, i * nw, j * nh, nw, nh);
}
}
} else {
ctx.drawImage(img, 0, 0, width, height);
}
// ios
if(Orientation != "" && Orientation != 1){
switch(Orientation){
case 6:// ( )90
this.rotateImg(img,'left',canvas);
break;
case 8:// ( )90
this.rotateImg(img,'right',canvas);
break;
case 3:// 180
this.rotateImg(img,'right',canvas);//
this.rotateImg(img,'right',canvas);
break;
}
}
//
let ndata = canvas.toDataURL('image/jpeg', 0.1);
console.log(' :' + initSize);
console.log(' :' + ndata.length);
console.log(' :' + ~~(100 * (initSize - ndata.length) / initSize) + "%");
tCanvas.width = tCanvas.height = canvas.width = canvas.height = 0;
return ndata;
},
}
}
</script>
<style>
*{
margin: 0;
padding: 0;
}
.show {
width: 100px;
height: 100px;
overflow: hidden;
position: relative;
border-radius: 50%;
border: 1px solid #d5d5d5;
}
.picture {
width: 100%;
height: 100%;
overflow: hidden;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
위 에서 말 한 것 은 편집장 이 소개 한 vue 2 가 모 바 일 업로드,미리 보기,압축 사진 을 실현 하여 사진 회전 문 제 를 해결 하 는 데 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.편집장 은 신속하게 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fastapi websocket 및 vue 3(Composition API)1부: FastAPI virtualenv 만들기(선택 사항) FastAPI 및 필요한 모든 것을 다음과 같이 설치하십시오. 생성main.py 파일 및 실행 - 브라우저에서 이 링크 열기http://127.0.0.1:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.