在jQuery中预览时如何防止图像旋转?

时间:2016-09-21 10:25:28

标签: javascript jquery preview image-rotation

当用户上传图片时,当使用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);
    });

但是当我预览图像然后旋转它时,如何避免这种情况?

0 个答案:

没有答案