Topic: How can I see if imagemagick is available

Maybe a silly question but ok. Im running on a shared hosting webserver and I know GD is available. How can I test if imagemagick is available without doing the installation ? I tried the phpinfo() but
it gave only

gd
GD Support     enabled
GD Version     bundled (2.0.28 compatible)
FreeType Support     enabled
FreeType Linkage     with freetype
T1Lib Support     enabled
GIF Read Support     enabled
GIF Create Support     enabled
JPG Support     enabled
PNG Support     enabled
WBMP Support     enabled
XBM Support     enabled

Re: How can I see if imagemagick is available

I asked and they don't. Now, Ill get it going on some home server.

3

Re: How can I see if imagemagick is available

Actually, ImageMagick isn't a part of the php build, but rather a separate set of programs that ochiba will run using exec(). So, if you have shell login (ie ssh) access to your server, you could type something like

which convert

to see if the ImageMagick program convert is available.