';
echo '
GD is ';
if (function_exists("gd_info")) {
echo 'supported by your server!
';
$gd = gd_info();
foreach ($gd as $k => $v) {
echo '';
echo '
' . $k . ' ';
if ($v)
echo '
Yes';
else
echo '
No';
echo '
';
}
} else {
echo 'not supported by your server!';
}
echo 'by dagondesign.com
';
echo '';
?>