Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
megalith #1
ImageMagick & cfexecute
I just moved all our websites to a new server which is running win2003 and CFMX
6.1 with updates. The old server was Win2k and CFMX 6.1 no updates. This code
worked fine on the old server to add a watermark:
<cfexecute
name="C:\Program Files\ImageMagick-6.0.2-q16\composite -compose bumpmap
-gravity center #WatermarkPath#mark.png \
#PrvPath##SESSION.Client.ID#-#ImageName#
#PrvPath##SESSION.Client.ID#-#ImageName#">
</cfexecute>
The above code now gives this error: "An exception occurred when invoking an
external process."
After reading some posts about changes to cfexecute I changed the code to
(added arguments=):
<cfexecute
name="C:\Program Files\ImageMagick-6.0.2-q16\composite"
Arguments="-compose bumpmap -gravity center#WatermarkPath#mark.png \
#PrvPath##SESSION.Client.ID#-#ImageName#
#PrvPath##SESSION.Client.ID#-#ImageName#">
</cfexecute>
Now I receive no error but nothing happens.
Does anyone have any idea what may be the problem? Thanks in advance for any
help
megalith Guest
-
ImageMagick and threads
Hello I have a problem with PerlMagick, it crashes every time I run the script. Perl version 5.8.1, ImageMagick/PerlMagick version 6.1.0-3. A... -
using imagemagick
Hello Would you please give me some good references and tutorials on how to use imagemagick in PHP. I am trying to create an extended gallery for... -
imagemagick
I need some help with imagemagick how is it possible to resize a pic to a fixed size (640x480) and if the image is too small (640x400) to fill up... -
Win98, PHP, and Imagemagick
I've been fighting with this for three days. Can anyone give me a clue as to what I need to do to make this script work? Win98 (first edition),... -
imagemagick via fink, still no go
I installed fink, then did sudo apt-get install imagemagick That failed because I don't have xfree86 installed (I really only need the command... -
Mr Black #2
Re: ImageMagick & cfexecute
Try this one instead of CFEXECUTE
[url]http://www.cftagstore.com/tags/cfxexec.cfm[/url]
Mr Black Guest



Reply With Quote

