Imagemagick is found in various places on servers depending on the installers choice of path.
Take this 3 line PHP code and copy to a text editor and name the file something like whereismagick.php, upload it to your server and call it in your browser. It will give the path to imagemagick on your server.
PHP Code:
<?
system('whereis convert');
?>