cannot use cfx_image custom tag
While trying to use cfx_image tag I am getting the following error and anyone give me an idea what I am missing?

Thanks
While trying to use cfx_image tag I am getting the following error and anyone give me an idea what I am missing?

Thanks
Yes there was a problem with bits. I was trying to run a 32bit dll in 64bit CF.
Fix:
Rather than reinstalling my CF I gave up using cfx_image tag as I found a better option.
The builtin CF function ImageResize:
<!--- This resizes an image to attributes.thumbsize of original size and resize it proportionately to the new width. Notice that the height is blank.--->
<cfset uploadedImage=ImageNew("#attributes.imagepath#\#photo#")>
<cfset ImageResize(uploadedImage,"#attributes.thumbsize#","","highestQuality",1)>
more details about this function can be found at:
http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=functions_h-im_39.html
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.