timlondon Posted August 7, 2007 Share Posted August 7, 2007 How do i check if gd is installed?? Shouldn't it be present in the php.ini?????? Quote Link to comment https://forums.phpfreaks.com/topic/63753-gd/ Share on other sites More sharing options...
wildteen88 Posted August 7, 2007 Share Posted August 7, 2007 <?php if(extension_loaded('gd')) { echo 'GD is loaded!'; if(function_exists('gd_info')) { echo ' Info: '; echo '<pre>' . print_r(gd_info(), true) . '</pre>'; } } else { echo 'GD is not loaded'; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/63753-gd/#findComment-317710 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.