My web hosting said ImageMagic has been pre-installed on the server. I did a quick search for "ImageMagick" in the output of phpinfo() and I found nothing. I can't SSH in the server so is there a way in PHP I can verify the installation?
This is as short and sweet as it can get:
if (!extension_loaded('imagick'))
echo 'imagick not installed';