javascript - Plupload Fix Image Orienttion When Uploading -
images captured using devices iphone adds orientation tag exif meta in jpg. because of this, images stored in wrong orientation in server when uploaded via plupload. i'm wondering if possible fix orientation of image using plupload before upload server.
ps. i'm using resize option of plupload.
adding resize option preserve_headers: false, fixed it, this:
resize: { quality: 90, preserve_headers: false },
Comments
Post a Comment