One of the questions we get asked is. I have seen a php script that requires GD support but I don't know if my host supports this? This snipppet will help.
<?php
if(!function_exists("gd_info"))
print "GD is not installed on this server";
if(function_exists("gd_info")) print "GD <b>is</b> installed on this server!";
?>