当用户上传图片时,当使用jQuery预览时,它会被旋转, 这是代码:
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('.profile_img img').attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
$("#file").change(function(){
readURL(this);
});
但是当我预览图像然后旋转它时,如何避免这种情况?