本篇文章就帶給大家行動端圖片上傳旋轉、壓縮問題的解決方案。有一定的參考價值,有需要的朋友可以參考一下,希望對你們有幫助。
前言
在手機上透過網頁input 標籤拍照上傳圖片,有些手機會出現圖片旋轉了90度d的問題,包括iPhone 和個別三星手機。這些手機豎起拍的時候才會出現這種問題,橫拍出來的照片就正常顯示。因此,可以透過獲取手機拍照角度來對照片進行旋轉,從而解決這個問題。
Orientation
這個參數並不是所有圖片都有的,不過手機拍出來的圖片是帶有這個參數的。
旋轉角度 | 參數值 |
---|---|
0° | #1 |
順時針90° | 6 |
#逆時針90° | 8 |
180° | 3 |
#參數為1 的時候顯示正常,那麼在這些橫拍顯示正常,即Orientation = 1 的手機上,垂直拍攝的參數為6。
想要取得 Orientation 參數,可以透過 exif.js 函式庫來操作。 exif.js 功能很多,體積也很大,未壓縮之前足足有 30k,這對手機頁面載入來說是非常大影響的。而我只需要取得 Orientation 資訊而已,所以我這裡刪減了 exif.js 函式庫的一些程式碼,將程式碼縮小到幾KB。
exif.js 取得 Orientation :
EXIF.getData(file, function() { var Orientation = EXIF.getTag(this, 'Orientation'); });
file 則是 input 檔案表單上傳的檔案。上傳的檔案經過fileReader.readAsDataURL(file) 就可以實作預覽圖了,這方面不清楚的可以檢視:HTML5 進階系列:檔案上傳下載
##旋轉
旋轉需要用到canvas 的rotate() 方法。ctx.rotate(angle);
旋轉原理圖
壓縮
手機拍出來的照片太大,而且使用base64 編碼的照片會比原始照片大,那麼上傳的時候進行壓縮就非常有必要的。現在的手機像素這麼高,拍出來的照片寬高都有數千像素,用 canvas 來渲染這張照片的速度會相對比較慢。 因此第一步需要先對上傳照片的寬高做限制,判斷寬度或高度是否超出哪個範圍,則等比壓縮其寬高。var ratio = width / height;if(imgWidth > imgHeight && imgWidth > xx){ imgWidth = xx; imgHeight = Math.ceil(xx / ratio); }else if(imgWidth yy){ imgWidth = Math.ceil(yy * ratio); imgHeight = yy; }
canvas.toDataURL("image/jpeg", 1);
總結
綜合以上,範例的程式碼包括精簡的exif.js函式庫位址:file-demo主要的核心程式碼如下:<input><img alt="行動端圖片上傳旋轉、壓縮問題的解決方案" > <script></script> <script> var ipt = document.getElementById('files'), img = document.getElementById('preview'), Orientation = null; ipt.onchange = function () { var file = ipt.files[0], reader = new FileReader(), image = new Image(); if(file){ EXIF.getData(file, function() { Orientation = EXIF.getTag(this, 'Orientation'); }); reader.onload = function (ev) { image.src = ev.target.result; image.onload = function () { var imgWidth = this.width, imgHeight = this.height; // 控制上传图片的宽高 if(imgWidth > imgHeight && imgWidth > 750){ imgWidth = 750; imgHeight = Math.ceil(750 * this.height / this.width); }else if(imgWidth < imgHeight && imgHeight > 1334){ imgWidth = Math.ceil(1334 * this.width / this.height); imgHeight = 1334; } var canvas = document.createElement("canvas"), ctx = canvas.getContext('2d'); canvas.width = imgWidth; canvas.height = imgHeight; if(Orientation && Orientation != 1){ switch(Orientation){ case 6: // 旋转90度 canvas.width = imgHeight; canvas.height = imgWidth; ctx.rotate(Math.PI / 2); // (0,-imgHeight) 从行動端圖片上傳旋轉、壓縮問題的解決方案那里获得的起始点 ctx.drawImage(this, 0, -imgHeight, imgWidth, imgHeight); break; case 3: // 旋转180度 ctx.rotate(Math.PI); ctx.drawImage(this, -imgWidth, -imgHeight, imgWidth, imgHeight); break; case 8: // 旋转-90度 canvas.width = imgHeight; canvas.height = imgWidth; ctx.rotate(3 * Math.PI / 2); ctx.drawImage(this, -imgWidth, 0, imgWidth, imgHeight); break; } }else{ ctx.drawImage(this, 0, 0, imgWidth, imgHeight); } img.src = canvas.toDataURL("image/jpeg", 0.8); } } reader.readAsDataURL(file); } }</script>
JavaScript影片教學,jQuery影片教學,bootstrap教學!
以上是行動端圖片上傳旋轉、壓縮問題的解決方案的詳細內容。更多資訊請關注PHP中文網其他相關文章!