download url : https://github.com/exif-js/exif-js

1
2
3
4
5
6
7
8
//获取照片方向角属性,用户旋转控制
EXIF.getData(file,  function () {  // file input[type=file]的文件
     EXIF.getAllTags( this );
 
     var  orientation = EXIF.getTag( this 'Orientation' );
 
     console.log(orientation );
});