vue 利用H5formData方式上傳圖片绩郎,解決IOS拍照旋轉(zhuǎn)潘鲫,可壓縮圖片;

<template>
<div>
<div class="user-header">
<div class="blur" :style="'backgroundImage:url('+service+img_src+')'"></div>
<div class="info-wrap">
<div class="show-img">
<div class="picture-wrap" :style="'backgroundImage:url('+service+img_src+')'"></div>
<input type="file" id="upload-btn" ref="img_file" accept="image/*" @change="upload">
</div>

  </div>

</div>

</div>
</template>

解決OIS 拍照旋轉(zhuǎn)等問題肋杖,結(jié)合H5 formData的方式上傳圖片溉仑,通過axios上傳到后臺
這里解決旋轉(zhuǎn)問題需要借助一個(gè)第三方哭 exif-js
庫已經(jīng)封裝到git
順手star 一下,多謝
https://github.com/CommanderXL/imgResize

重要的部分


image.png

<script>
import Exif from 'exif-js'

export default {
    data () {
        return {
            headerImage:'',
            picValue:'',
            img_src:'/Uploads/2018-01-19/5a6197e1268c4.jpg'
        }
    },
    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;
            //去獲取拍照時(shí)的信息状植,解決拍出來的照片旋轉(zhuǎn)問題
            Exif.getData(file, function(){
                Orientation = Exif.getTag(this, 'Orientation');
            });
            // 看支持不支持FileReader
            if (!file || !window.FileReader) return;

            if (/^image/.test(file.type)) {
                // 創(chuàng)建一個(gè)reader
                let reader = new FileReader();
                // 將圖片2將轉(zhuǎn)成 base64 格式
                reader.readAsDataURL(file);
                // 讀取成功后的回調(diào)
                reader.onloadend = 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 () {
            //這里寫接口
            let _this=this;
            let uploadFile=new FormData();
            let imgData=this.$refs['img_file'].files[0];
            uploadFile.append('file',imgData);
            this.$axios.post('api/test',
                uploadFile

            ).then(function (response) {
                console.log(_this.img_src)
                console.log(response)
                console.log(response.data.data.original);
                _this.img_src=response.data.data.original;
                console.log(_this.img_src)
            })
                .catch(function (error) {
                    console.log(error);
                    console.log('0')
                });

        },
        rotateImg (img, direction,canvas) {
            //最小與最大旋轉(zhuǎn)方向,圖片旋轉(zhuǎn)4次后回到原方向
            const min_step = 0;
            const max_step = 3;
            if (img == null)return;
            //img的高度和寬度不能在img元素隱藏后獲取津畸,否則會(huì)出錯(cuò)
            let height = img.height;
            let width = img.width;
            let step = 2;
            if (step == null) {
                step = min_step;
            }
            if (direction == 'right') {
                step++;
                //旋轉(zhuǎn)到原位置振定,即超過最大值
                step > max_step && (step = min_step);
            } else {
                step--;
                step < min_step && (step = max_step);
            }
            //旋轉(zhuǎn)角度以弧度值為參數(shù)
            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;
            //如果圖片大于四百萬像素,計(jì)算壓縮比并將大小壓至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); //計(jì)算要分成多少塊瓦片
                //            計(jì)算每塊瓦片的寬和高
                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);
            }
            //修復(fù)ios上傳圖片的時(shí)候 被旋轉(zhuǎn)的問題
            if(Orientation != "" && Orientation != 1){
                switch(Orientation){
                    case 6://需要順時(shí)針(向左)90度旋轉(zhuǎn)
                        this.rotateImg(img,'left',canvas);
                        break;
                    case 8://需要逆時(shí)針(向右)90度旋轉(zhuǎn)
                        this.rotateImg(img,'right',canvas);
                        break;
                    case 3://需要180度旋轉(zhuǎn)
                        this.rotateImg(img,'right',canvas);//轉(zhuǎn)兩次
                        this.rotateImg(img,'right',canvas);
                        break;
                }
            }
            //進(jìn)行最小壓縮
            let ndata = canvas.toDataURL('image/jpeg/gif', 0.5);
            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>

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末肉拓,一起剝皮案震驚了整個(gè)濱河市后频,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌暖途,老刑警劉巖卑惜,帶你破解...
    沈念sama閱讀 211,561評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異驻售,居然都是意外死亡露久,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,218評論 3 385
  • 文/潘曉璐 我一進(jìn)店門芋浮,熙熙樓的掌柜王于貴愁眉苦臉地迎上來抱环,“玉大人,你說我怎么就攤上這事纸巷≌虿荩” “怎么了?”我有些...
    開封第一講書人閱讀 157,162評論 0 348
  • 文/不壞的土叔 我叫張陵瘤旨,是天一觀的道長梯啤。 經(jīng)常有香客問我,道長存哲,這世上最難降的妖魔是什么因宇? 我笑而不...
    開封第一講書人閱讀 56,470評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮祟偷,結(jié)果婚禮上察滑,老公的妹妹穿的比我還像新娘。我一直安慰自己修肠,他們只是感情好贺辰,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,550評論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般饲化。 火紅的嫁衣襯著肌膚如雪莽鸭。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,806評論 1 290
  • 那天吃靠,我揣著相機(jī)與錄音硫眨,去河邊找鬼。 笑死巢块,一個(gè)胖子當(dāng)著我的面吹牛礁阁,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播夕冲,決...
    沈念sama閱讀 38,951評論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼氮兵,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了歹鱼?” 一聲冷哼從身側(cè)響起泣栈,我...
    開封第一講書人閱讀 37,712評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎弥姻,沒想到半個(gè)月后南片,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,166評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡庭敦,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,510評論 2 327
  • 正文 我和宋清朗相戀三年疼进,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片秧廉。...
    茶點(diǎn)故事閱讀 38,643評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡伞广,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出疼电,到底是詐尸還是另有隱情嚼锄,我是刑警寧澤,帶...
    沈念sama閱讀 34,306評論 4 330
  • 正文 年R本政府宣布蔽豺,位于F島的核電站区丑,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏修陡。R本人自食惡果不足惜沧侥,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,930評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望魄鸦。 院中可真熱鬧宴杀,春花似錦、人聲如沸拾因。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,745評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至主经,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間庭惜,已是汗流浹背罩驻。 一陣腳步聲響...
    開封第一講書人閱讀 31,983評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留护赊,地道東北人惠遏。 一個(gè)月前我還...
    沈念sama閱讀 46,351評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像骏啰,于是被迫代替她去往敵國和親节吮。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,509評論 2 348

推薦閱讀更多精彩內(nèi)容