In the last days, while looking for a way to do image cropping in ASP.NET, I found out several high quality tools that do the job very well. The main one is a great jQuery plugin called jCrop. It has many useful features out of the box coupled with a well forged look and feel, which made me choose to use it with no doubt.

What I needed, exactly, was a way to enable users to upload pictures and crop them on the fly before storing them on the website database. I often use ASP.NET dynamic data to build complete and fully functional data driven websites in minutes. ASP.NET Dynamic Data is based on page templates and field templates that are brought together in runtime using user controls, in order to generate custom forms for manipulating the database tables.

One of these field templates, is DbImage, which is available in the Dynamic Data preview 4 on Codeplex. Basically, it maps a binary table column to a user control that consists of a FileUpload control, which you can use to upload the image. Then, the image bytes are stored in the database. It is obviously not the best way to store images on a database, but it is extremely convenient. In an ideal scenario, the table would only point to the actual path of the image on the disk.

So, my work was to couple together jCrop and ASP.NET Dynamic Data DbImage control, so that the user may choose to crop the image just before it is saved to the database.

I found a very complete and interesting post on this topic at mikesdotnetting.com, which handles the actual image cropping part of the work with C#.

My work was then based on Mike’s post and jCrop, putting it all together inside a DbImage to enable the whole workflow. The general flow is strongly based on Mike’s code using panels and hidden fields to store the selected X, Y, Width and Height, but I moved to a more wizard-like flow, which should be more straightforward to the regular user.

I first added a “Crop..” button to the control that should launch jCrop with the selected image file.

Next step was to open a AJAX ModalPopupExtender and show the selected image ready to be cropped with jCrop:

Last step, check the cropped image and finish the Wizard:

The cropped image is then scaled down and added to the form:

In order to scale down the cropped image, I used a code from Rick Strahl and added to a page called GetThumb.aspx. This page receives the desired filename in the query string, fetches it from the crop temporary files directory and writes it to the response stream.

I am providing the whole set of files needed to accomplish this in a zip file. Follow these instructions for setup:

  1. Put the DbImage_Edit.ascx* files in the **\DynamicData\FieldTemplates\** folder;

  2. Put the GetThumb.aspx* files in the website root (“~” folder);

  3. Put the Limaf.Tools.Web.dll file in \bin folder (the Crop and Thumb functions are there).

  4. Create an ‘images’ folder in your project root

If you prefer, you can copy/paste get Mike’s Crop and Rick’s Thumbnails functions yourself and build them as part of the website. In this case, step 3 above is not needed.

I may have forgotten a file or a step or two, so please let me know if anything goes wrong.

Till next time!