what version of IM are you on? How did you install it? From binary, from source? If the latter, did you use MacPorts or FINK?
Did you set your PATH to know where IM is located. If you installed from source it should be in /usr/local/bin
cd /usr/local/bin
ls
see if that directory contains convert, mogrify, montage, etc?
If not try
find /usr | grep "convert"
and see where it is located.
You might also get some clues to where IM is located by
convert -list configure
On my Mac OSX Tiger, I have set my PATH in the .profile (hidden) file. My .profile file has set the PATH to contain /usr/local/bin and also the path to where I keep my scripts. The latter is not necessary, but then to run the script you need to provide "bash" and the path to the script and potentially to your images in your terminal window.
For example:
bash pathto/3Dtext ... arguments ... pathto/outputimage
Here is what my .profile looks like, but yours may need to be different if you installed using MacPorts or FINK
##
# DELUXE-USR-LOCAL-BIN-INSERT
# (do not remove this comment)
##
echo $PATH | grep -q -s "/usr/local/bin"
if [ $? -eq 1 ] ; then
PATH=$PATH:/usr/local/bin
export PATH
fi
export PATH="${PATH}:/Users/fred/Applications/ImageMagick-Scripts/bin"
export DISPLAY=:0
I used BBEdit (text editor) as it lets me get to hidden files such as .profile.
Let me know your exact command.
This topic that I wrote may also be of some help although it was done with Tiger. see
viewtopic.php?f=1&t=10442
Fred