Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
root@vps [/home/mydomain/public_html/files]# /usr/bin/convert /home/mydomain/public_html/files/test.jpg -fill yellow -pointsize 25 -draw 'text 10,10 "TEST" ' /home/mydomain/public_html/files/test2.jpg
sh: line 1: gs: command not found
sh: line 1: gs: command not found
convert: Postscript delegate failed `/tmp/magick-XXxKu8ud'.
sh: line 1: gs: command not found
sh: line 1: gs: command not found
convert: Postscript delegate failed `/tmp/magick-XXxyDYLC'.
root@vps [/home/mydomain/public_html/files]#
PHP will not show the error output form command unless you redirect the errors to the output display.
try adding 2>&1 into the PHP convert comand.
The command line run seems to indicate that ghostscript (used to convert postscript and PDF format images) is not available on the current 'PATH'. eithe rit is not installed, or it is installed in a unusual place like a application specific directory in /opt or /usr/local
It is fixed... I was running an earlier version 6.2 of IM... and I had not recompiled IM after installing GS... So I am assuming recompiling, more than upgrading, fixed the issue.