在手机上通过网页 input 标签拍照上传图片,有一些手机会涌现图片旋转了90度d的问题,包括 iPhone 和个别三星手机。这些手机竖着拍的时候才会涌现这种问题,横拍出来的照片就正常显示。因此,可以通过获取手机拍照角度来对照片进行旋转,从而办理这个问题。
Orientation
这个参数并不是所有图片都有的,不过手机拍出来的图片是带有这个参数的。
旋转角度参数值0°1顺时针90°6逆时针90°8180°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);
rotate 方法的参数为旋转弧度。须要将角度转为弧度:degrees Math.PI / 180
旋转的中央点默认都在 canvas 的出发点,即 ( 0, 0 )。旋转的事理如下图:
旋转之后,如果从 ( 0, 0 ) 点进行 drawImage(),那么画出来的位置便是在左图中的旋转 90 度后的位置,不在可视区域呢。旋转之后,坐标轴也随着旋转了,想要显示在可视区域呢,须要将 ( 0, 0 ) 点往 y 轴的反方向移 y 个单位,此时的起始点则为 ( 0, -y )。
同理,可以得到旋转 -90 度后的起始点为 ( -x, 0 ),旋转 180 度后的起始点为 ( -x, -y )。
压缩
手机拍出来的照片太大,而且利用 base64 编码的照片会比原照片大,那么上传的时候进行压缩就非常有必要的。现在的手机像素这么高,拍出来的照片宽高都有几千像素,用 canvas 来渲染这照片的速率会相比拟较慢。
因此第一步须要先对上传照片的宽高做限定,判断宽度或高度是否超出哪个范围,则等比压缩其宽高。
var ratio = width / height;if(imgWidth > imgHeight && imgWidth > xx){ imgWidth = xx; imgHeight = Math.ceil(xx / ratio);}else if(imgWidth < imgHeight && imgHeight > yy){ imgWidth = Math.ceil(yy ratio); imgHeight = yy;}
第二步就通过 canvas.toDataURL() 方法来压缩照片质量。
canvas.toDataURL(\"大众image/jpeg\公众, 1);
toDataURL() 方法返回一个包含图片展示的 data URI 。利用两个参数,第一个参数为图片格式,默认为 image/png。第二个参数为压缩质量,在指定图片格式为 image/jpeg 或 image/webp的情形下,可以从 0 到 1 的区间内选择图片的质量。
总结
综合以上,例子的代码包括精简的exif.js库地址:file-demo
紧张的核心代码如下:
<input type=\"大众file\"大众 id=\"大众files\"大众 ><img src=\公众blank.gif\"大众 id=\"大众preview\"大众><script src=\"大众small-exif.js\"大众></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>
原文地址:https://zhuanlan.zhihu.com/p/27627436