method a)
<?PHP print phpinfo(); ?>
modules are listed alphabetically
method b)
<?PHP
//check if gd library is installed - © 2003 by mario.rader @ stargraphX.com
function gdCheck() {
if (function_exists('imagecreatetruecolor')) {
print "GD v2 installed";
}
elseif (function_exists('imagecreate')) {
print "GD v1 installed";
}
else {
print "GD not installed";
}
}
gdCheck();
?>