Topic: Plupload not autorotating
Hi all!
I'm kinda at my wits end here, the docs claim that plupload will autorotate my images if there's orientation data in the exif metadata, but it's just not happening. Any pointers? here's my code:
var uploader = new plupload.Uploader({
runtimes : 'html5,flash,html4',
flash_swf_url: 'https://rawgithub.com/moxiecode/moxie/master/bin/flash/Moxie.cdn.swf',
drop_element : 'plupload-target',
browse_button : 'plupload-target',
url : "/file/post",
autostart: true,
filters: [
{title: 'Images', extensions: 'jpg,jpeg,png'}
],
resize: {
height: 800,
preserve_headers: false
}
});
Any help would be greatly appreciated!