LyndonOHRC
Programmer
I have passed an image and crop values to my form action page. I want to crop the image and then save it to disk. the imagecrop() function s returning this error: "The result of the method ImageCrop cannot be assigned because it does not return a value."
Here's what I've tried:
The imagecrop is a new process for this existing template. The bse64 and cfimage/destination lines work fine.
Thanks in advance.
Lyndon
Lyndon
---People Remember about 10% of what you say ---They never forget how you made them feel. Covey
Here's what I've tried:
Code:
<cfset myImage = ImageReadBase64("#form.xBase64PhotoString#")>
<cfset myImage=ImageCrop(myImage,Val(form.x),Val(form.y),Val(form.w),Val(form.h))>
<cfimage source="#myImage#" destination="c:/workgroups/webdata/badgecards/#BadgPhotoName#" action="write" overwrite="Yes">
The imagecrop is a new process for this existing template. The bse64 and cfimage/destination lines work fine.
Thanks in advance.
Lyndon
Lyndon
---People Remember about 10% of what you say ---They never forget how you made them feel. Covey