I am using angular-file-upload directive to upload files, I have problem with images or photos taken with apple devices, I understand that apple include exif orientation data on image to correct view on apple devices, but when these images are uploaded on web app the orientation is wrong for browsers.
I am using this directive in several views on my app, for time reazon change to another like ng-file-upload is not the best option.
There are some other directives that fix this problem like ng-file-upload but I want to know how to fix this issue with onBeforeUploadItem event of angular-file-upload.
Now I solved it.
here's what I do.
Here's the code in html:
<input id="upload_button" type="file" nv-file-select="" uploader="uploader" multiple/>
and
<img ng-show="uploader.isHTML5" ng-src="{{pic}}" height="100%" />
then in controller:
var handleFileSelect = function(evt) { $scope.pic = "";
and then, before upload:
and you need loader-image.min.js, ng-img-crop.js and
[ngImgCrop]
in app.jsAnd that's it.
I hope it helps you.