views:

179

answers:

2

For those that have been on facebook it allows you to upload an image to use as your avatar, and if that image is too large you can drag it around in a container to set the co-ordinates of the crop.

Can anyone Help me out to implement this functionality in c# ASP.NET

+4  A: 

Probably this will do the job for you

http://webcropimage.codeplex.com/

For writing your own image cropper, study the source code of that.

Srinivas Reddy Thatiparthy
I have tried Jcrop.I dont want to move the resizable crop window.What I want is to move image in the background below the fixed cropping window to create thumbnail.(like facebook)
xyz
+4  A: 

This will be mostly client-side. You can take a look at something like Jcrop.

Shane Reustle
JCrop works very well, you can send the coordinates back to the server to do server side cropping as well.
Patrick Gidich