我有一个ASP.NET MVC项目,我正在使用Cropbox.js:jQuery Image Crop Plugin - http://www.jqueryrain.com/demo/jquery-crop-image-plugin/来裁剪用户的图像,但我找不到如何将裁剪后的图像转换为控制器。
JavaScript看起来像这样:
<script type="text/javascript">
window.onload = function () {
var options =
{
imageBox: '.imageBox',
thumbBox: '.thumbBox',
spinner: '.spinner',
imgSrc: 'avatar.png'
}
var cropper;
document.querySelector('#file').addEventListener('change', function () {
var reader = new FileReader();
reader.onload = function (e) {
options.imgSrc = e.target.result;
cropper = new cropbox(options);
}
reader.readAsDataURL(this.files[0]);
this.files = [];
})
document.querySelector('#btnCrop').addEventListener('click', function () {
var img = cropper.getAvatar()
document.querySelector('.cropped').innerHTML += '<img id="Portrait" src="' + img + '">';
})
document.querySelector('#btnZoomIn').addEventListener('click', function () {
cropper.zoomIn();
})
document.querySelector('#btnZoomOut').addEventListener('click', function () {
cropper.zoomOut();
})
};
</script>
我尝试在控制器中使用以下内容,但由于我请求该文件,我不确定它是否可以工作:
HttpPostedFileBase file = Request.Files["Portrait"];
也许可以将img文件从javascript存储到模型中?
答案 0 :(得分:1)
我的朋友通过添加以下内容解决了这个问题:
document.getElementById('avatarData').value = img;
到剧本的这一部分:
document.querySelector('#btnCrop').addEventListener('click', function () {
var img = cropper.getAvatar()
document.querySelector('.cropped').innerHTML += '<img src="' + img + '">';
//new added
document.getElementById('avatarData').value = img;
})
然后在View窗体中使用隐形输入:
<input type="hidden" id="avatarData" name="avatarData" value="">
现在我可以在控制器中捕获它:
var file = Request.Form["avatarData"];
我会得到:
"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQA..."
要使用此字符串,有一个非常有用的问题&amp;回答 - MVC Convert Base64 String to Image, but ... System.FormatException
答案 1 :(得分:0)
我不知道jQuery Image Crop Plugin,但我认为你需要做类似的事情:
获取图像的字节,将它们转换为base64,然后使用Ajax Post将它们发送到ViewController操作。
答案 2 :(得分:0)
我可以使用AjaxForm或HtmlForm并将其推送到任何操作。然后使用FormCollection
并观察您的值。例如,在我的Captcha生成器中,我覆盖了过滤器的一些操作:
public class CaptchaValidator : ActionFilterAttribute
{
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
RegisterViewModel model = filterContext.ActionParameters["model"] as RegisterViewModel;
if (filterContext.HttpContext.Session["Captcha"] == null || filterContext.HttpContext.Session["Captcha"].ToString() != model.Captcha)
{
filterContext.ActionParameters["captchaValid"] = false;
}
else
{
filterContext.ActionParameters["captchaValid"] = true;
}
base.OnActionExecuting(filterContext);
}
}
并在您的控制器中使用:
[CaptchaValidator]
public async Task<ActionResult> Register(RegisterViewModel model, bool captchaValid)
我认为您可以将bool captchaValid
更改为byte[]
。
我希望它可以帮到你: - )