Maybe this one? http://deepliquid.com/projects/Jcrop/demos.php

I've implemented Jcrop before using ColdFusion, it's pretty simple to do.
Jcrop will pass the x,y,width and height coordinates you need to crop the image 
in url variables.
Then you can do:
<cfset x = #url.x#>
<cfset y = #url.y#>
<cfset w = #url.w#>
<cfset h = #url.h#>

<cfset ImageCrop(myImage,x,y,w,h)>
<!--- Write the result to a file. --->
<cfimage source="#myImage#" action="write" destination="#destination#" >

hope this helps 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350100
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to