我创建了一个带有表单的页面,用户可以将一些数据提交到列表中并上传文件以作为附件保存在该列表中。 我还为用户提供了在保存到该列表之前旋转他们上传的图像的可能性。 我的问题是无法保存旋转后的图像,只有原始图像被上冲
上传代码
<td>
<label>Picture</label>
<input type="file" onchange="readURL(this)" class="form-control-file" id="Picture">
</td>
在页面上显示文件的代码
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#blah')
.attr('src', e.target.result)
.width(80)
.height(100);
};
reader.readAsDataURL(input.files[0]);
}
}
旋转图像的代码
$('.button').on("click", function(e) {
quantosrodou = quantosrodou + 90;
if (quantosrodou == 360){
quantosrodou = 0;
}
e.preventDefault();
if ($(this).is("#left")) {
deg = deg - 90;
} else {
deg = deg + 90;
}
$("#blah").css({
"-webkit-transform": "rotate(" + deg + "deg)",
"-moz-transform": "rotate(" + deg + "deg)",
transform: "rotate(" + deg + "deg)"
});
});
如果你们能帮助我,我会很感激