Check out the coppermine gallery forum for the way to get ImageMagick to work with coppermine gallery as there are loads of posts there about it.
To find if ImageMagick is installed create a php page containing this, upload it to your server and navigate to the page to check the output which should be something like: convert is /usr/local/bin/convert
Code: Select all
<?php
echo "<pre>";
system("type convert");
echo "</pre>";
?>