Crop Image on Server in ASP.NET MVC 28-12-2015 16:06:37 C# / ASP.NET MVC 0 Bookmark(s) 263 View(s) public byte[] CropImage(byte[] input, int top, int left, int bottom, int right) { var webImage = new WebImage(input); webImage.Crop(top, left, bottom, right); return webImage.GetBytes(); }