views:

360

answers:

2

Hi, what I am looking is for a jQuery plugin capable of rotating and resizing an image using handles, like in this pic (this is the webapp). Working with jQueryUI rotating and resizing the same image is really messy and the image does not contain handles to click to rotate and move.

+1  A: 

To rotate, you might find wilq32 to be a good starting point. Pretty simple syntax:

$("#image").rotate(-20);
Jonathan Sampson
+1  A: 

http://code.google.com/p/jquery-rotate/

$('#theimage').rotateRight(45);
Shadi Almosri