Setup Information


<?php
// Build the array of items to be used
exec("convert convert -list list", $IMarray, $code);

// Start the loop to find and display the results
foreach ($IMarray as $value) {
echo "<br>system ("convert -list $value")";
echo "<pre>";
system("convert -list $value");
echo "</pre><hr>";
}
?>

List all the different options and setup details for your ImageMagick installation, the options are read into an array and the code loops through each one.