<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
JCrop用來裁剪圖片,本篇想體驗的是:
在檢視頁上傳圖片:
上傳成功,跳轉到另外一個編輯檢視頁,使用JCrop對該圖片裁剪,並儲存圖片到指定資料夾:
裁剪成功後,在主檢視頁顯示裁剪圖片:
當然,實際專案中最有可能的做法是:在本頁上傳、裁剪並儲存。
為了配合上傳圖片的主檢視頁,需要一個與之對應的View Model,其中包含圖片路徑的屬性。而這個圖片路徑屬性不是簡單的欄位顯示編輯,當主檢視頁的View Model被傳遞到圖片編輯、裁剪檢視頁後,根據JScrop特點,肯定有針對圖片的裁剪和預覽區域,所以,我們需要針對主檢視頁View Model的路徑屬性使用UIHint特性,為該屬性客製化顯示和編輯檢視。主檢視頁的View Model為:
using System.ComponentModel.DataAnnotations; namespace MvcApplication1.Models { public class ProfileViewModel { [UIHint("ProfileImage")] public string ImageUrl { get; set; } } }
在圖片編輯、裁剪檢視頁,對應的View Model不僅有主檢視頁的View Model作為它的屬性,還有與JCrop相關的屬性,這些屬性無需顯示,只需要以隱藏域的方式存在著,通過JCrop的事件,把JCrop引數賦值給這些隱藏域。對應的View Model為:
using System.Web.Mvc; namespace MvcApplication1.Models { public class EditorInputModel { public ProfileViewModel Profile { get; set; } [HiddenInput] public double Top { get; set; } [HiddenInput] public double Bottom { get; set; } [HiddenInput] public double Left { get; set; } [HiddenInput] public double Right { get; set; } [HiddenInput] public double Width { get; set; } [HiddenInput] public double Height { get; set; } } }
在上傳圖片的主檢視頁中,需要引入Microsoft.Web.Helpers(通過NuGet),使用該名稱空間下的FileUpload幫我們生成上傳元素。
@using Microsoft.Web.Helpers @model MvcApplication1.Models.ProfileViewModel @{ ViewBag.Title = "Index"; Layout = "~/Views/Shared/_Layout.cshtml"; } <h2>Index</h2> @using (Html.BeginForm("Upload", "Home", FormMethod.Post, new {@encType = "multipart/form-data"})) { @Html.DisplayFor(x => x.ImageUrl)<br/> @FileUpload.GetHtml(initialNumberOfFiles:1,includeFormTag:false, uploadText:"上傳圖片")<br/> <input type="submit" name="submit" text="上傳" /> }
在HomeController中:
action方法Upload用來接收來自主檢視的View Model,把圖片儲存到臨時資料夾Upload中,並把主檢視的View Model賦值給編輯、裁剪檢視中View Model的屬性。
還需要引入System.Web.Helpers元件,該元件WebImage類,提供了針對上傳圖片處理的一些API。
action方Edit接收來自編輯、裁剪檢視中View Model,根據引數,使用WebImage類的API對圖片裁剪,儲存到目標資料夾ProfileImages,並刪除臨時資料夾Upload中的相關圖片。
using System.Web.Mvc; using MvcApplication1.Models; using System.Web.Helpers; using System.IO; namespace MvcApplication1.Controllers { public class HomeController : Controller { public ActionResult Index() { return View(); } //如果圖片上傳成功就到裁剪頁、即編輯頁 [HttpPost] public ActionResult Upload(ProfileViewModel model) { var image = WebImage.GetImageFromRequest(); //必須參照System.Web.Helpers程式集 if (image != null) { //限制圖片的長度不能大於500畫素 if (image.Width > 500) { image.Resize(500, ((500*image.Height)/image.Width)); } //根據圖片的名稱獲取相對路徑 var filename = Path.GetFileName(image.FileName); //儲存圖片到指定資料夾 image.Save(Path.Combine("~/Upload/", filename)); //獲取圖片的絕對路徑 filename = Path.Combine("../Upload/", filename); model.ImageUrl = Url.Content(filename); var editModel = new EditorInputModel() { Profile = model, Width = image.Width, Height = image.Height, Top = image.Height * 0.1, Left = image.Width * 0.9, Right = image.Width * 0.9, Bottom = image.Height * 0.9 }; return View("Editor", editModel); } return View("Index", model); } //裁剪頁 編輯頁 [HttpPost] public ActionResult Edit(EditorInputModel editor) { //var image = new WebImage("~/" + editor.Profile.ImageUrl); var image = new WebImage(editor.Profile.ImageUrl); var height = image.Height; var width = image.Width; image.Crop((int) editor.Top, (int) editor.Left, (int) (height - editor.Bottom), (int) (width - editor.Right)); var originalFile = editor.Profile.ImageUrl;//圖片原路徑 editor.Profile.ImageUrl = Url.Content("~/ProfileImages/" + Path.GetFileName(image.FileName)); image.Resize(100, 100, true, false); image.Save(@"~" + editor.Profile.ImageUrl); System.IO.File.Delete(Server.MapPath(originalFile)); //把在Upload中的上傳圖片刪除掉 return View("Index", editor.Profile); } } }
在編輯、裁剪檢視頁,需要參照Jcrop對應的css和js檔案。
@model MvcApplication1.Models.EditorInputModel @{ ViewBag.Title = "Editor"; Layout = "~/Views/Shared/_Layout.cshtml"; } <h2>Editor</h2> <link href="~/Content/jquery.Jcrop.css" rel="external nofollow" rel="stylesheet" /> <div id="mainform"> @using (Html.BeginForm("Edit", "Home", FormMethod.Post)) { @Html.EditorFor(x => x.Profile.ImageUrl) @Html.HiddenFor(x => x.Left) @Html.HiddenFor(x => x.Right) @Html.HiddenFor(x => x.Top) @Html.HiddenFor(x => x.Bottom) @Html.HiddenFor(x => x.Profile.ImageUrl) <input type="submit" name="action" value="裁剪"/> } </div> @section scripts { <script src="~/Scripts/jquery.Jcrop.js"></script> <script type="text/javascript"> $(function() { $('#profileImageEditor').Jcrop({ onChange: showPreview, onSelect: showPreview, setSelect: [@Model.Top, @Model.Left, @Model.Right, @Model.Bottom], aspectRatio: 1 }); }); function showPreview(coords) { if (parseInt(coords.w) > 0) { $('#Top').val(coords.y); $('#Left').val(coords.x); $('#Bottom').val(coords.y2); $('#Right').val(coords.x2); var width = @Model.Width; var height = @Model.Height; var rx = 100 / coords.w; var ry = 100 / coords.h; $('#preview').css({ width: Math.round(rx * width) + 'px', height: Math.round(ry * height) + 'px', marginLeft: '-' + Math.round(rx * coords.x) + 'px', marginTop: '-' + Math.round(ry * coords.y) + 'px' }); } } </script> }
既然為主檢視View Model的ImageUrl打上了[UIHint("ProfileImage")]特性,這意味著必須有對應的自定義強型別檢視。
public class ProfileViewModel { [UIHint("ProfileImage")] public string ImageUrl { get; set; } }
Views/Home/EditorTemplates/ProfileImage.cshtml,是針對ImageUrl屬性的自定義編輯模版:
@model System.String <div id="cropContainer"> <div id="cropPreview"> <img src="@(String.IsNullOrEmpty(Model) ? "" : Model)" id="preview" /> </div> <div id="cropDisplay"> <img src="@(String.IsNullOrEmpty(Model) ? "" : Model)" id="profileImageEditor" /> </div> </div>
Views/Home/DisplayTemplates/ProfileImage.cshtml,是針對ImageUrl屬性的自定義顯示模版:
@model System.String <img src="@(String.IsNullOrEmpty(Model) ? "" : Model)" id="profileImage" />
到此這篇關於ASP.NET MVC使用JCrop上傳並裁剪圖片的文章就介紹到這了。希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45