码迷,mamicode.com
首页 > Web开发 > 详细

js处理iphone照片旋转问题

时间:2017-03-09 15:58:04      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:图片   iphone   js   

    当我们在浏览器使用标签显示图片时,对于iphone手机拍出的照片会存在图片方向和在手机上显示及浏览器直接打开时不同,对于产生这个问题的原因这里有一篇很详细的说明及iOS开发中的处理方式:http://www.tuicool.com/articles/YfeeqaU。在这里,笔者对网页中使用js方式的处理进行简单的记录,便于日后查看。

    1.引入jquery.min.js/jquery.exif.js/jQueryRotate.js

    2.html:

mg id="imgId" src="xxx" exif=true>

    3.js:

var img=$("#imgId");
var orientation=img.exif("Orientation");
if (typeof orientation[0]==‘undefined"){
    console.log("没有Orientation信息");
    return;
}
switch (orientation[0]){
    case ‘3‘:
        img.rotate(180);
        break;
    case ‘6‘:
        img.rotate(90);
        break;
    case ‘8‘:
        img.rotate(270);
        break;
}


本文出自 “塞上名猪” 博客,请务必保留此出处http://zuohao1990.blog.51cto.com/6057850/1904667

js处理iphone照片旋转问题

标签:图片   iphone   js   

原文地址:http://zuohao1990.blog.51cto.com/6057850/1904667

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!