您好我想剪裁图片并将其上传到服务器上。
我正在使用 croppie js 插件并使用 get()方法获取点,以便使用WebImage类在服务器上裁剪它。
Asp.net MVC代码
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult ImageCrop(FormCollection fc)
{
WebImage data = WebImage.GetImageFromRequest();
if (data != null)
{
int x1, y1, x2, y2;
x1 = int.Parse(fc["x1"].ToString());
y1 = int.Parse(fc["y1"].ToString());
x2 = int.Parse(fc["x2"].ToString());
y2 = int.Parse(fc["y2"].ToString());
var fileName = Path.GetFileName(data.FileName);
fileName = Lawyer_id2 + ".jpeg";
var big = Server.MapPath("~/contents/ProfilePictures/big/" + fileName);
data.Crop(y1, x1, x2, y2);
data.Save(big);
}
}
Js代码
$uploadCrop = $('#upload-demo').croppie({
viewport: {
width: 200,
height: 200,
type: 'square'
},
boundary: {
width: 300,
height: 300
},
showZoomer: false,
mouseWheelZoom: false
});
readFile(fl);
$(".closeModal").on("click", function () {
$uploadCrop.croppie('result', {
type: 'canvas',
size: 'viewport'
}).then(function (resp) {
$('.upload-msg').css('display', '');
popupResult({
src: resp
});
});
var arr = $uploadCrop.croppie('get').points;
$("#x1").val(arr[0]);
$("#y1").val(arr[1]);
$("#x2").val(arr[2]);
$("#y2").val(arr[3]);
});
我获取隐藏输入字段中的所有点,然后将此点传递给 webimge 对象进行裁剪,但问题是裁剪后的图像不能保持纵横比并且裁剪错误,浏览器侧裁剪是完美的但是当我将这些点传递给服务器端进行裁剪时,它不像浏览器那样工作,我无法解决这个问题。
答案 0 :(得分:2)
裁剪已经在客户端进行,您应该只将结果发送到服务器端。无需将裁剪点发送到服务器端。
在html上定义Select
和Upload
按钮,并用id="main-cropper"
定义div
<div>
<div>
<div id="main-cropper"></div>
<a class="button actionSelect">
<input type="file" id="select" value="Choose Image" accept="image/*">
</a>
<button class="actionUpload">Upload</button>
</div>
</div>
在JS代码上,将croppie对象附加到下潜,将视点定义为边界,最后将请求发送到服务器以将结果存储为blob。在服务器端,将是一个Create
控制器,其操作GetImage
等待请求。 testFileName.png
被分配为文件名,您可以根据自己的情况对其进行修改。
var basic = $('#main-cropper').croppie({
viewport: { width: 200, height: 300 },
boundary: { width: 300, height: 400 },
showZoomer: false
});
function readFile(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#main-cropper').croppie('bind', {
url: e.target.result
});
}
reader.readAsDataURL(input.files[0]);
}
}
$('.actionSelect input').on('change', function () { readFile(this); });
$('.actionUpload').on('click', function() {
basic.croppie('result','blob').then(function(blob) {
var formData = new FormData();
formData.append('filename', 'testFileName.png');
formData.append('blob', blob);
var MyAppUrlSettings = {
MyUsefulUrl: '@Url.Action("GetImage","Create")'
}
var request = new XMLHttpRequest();
request.open('POST', MyAppUrlSettings.MyUsefulUrl);
request.send(formData);
});
});
在服务器端,在Create
控制器中:
[HttpPost]
public ActionResult GetImage(string filename, HttpPostedFileBase blob)
{
var fullPath = "~/Images/" + filename;
blob.SaveAs(Server.MapPath(fullPath));
return Json("ok");
}
生成uuid字符串并将其设置为文件名并将其存储在数据库中也很有意义。