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?????? 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'; } ?> Link to comment https://forums.phpfreaks.com/topic/63753-gd/#findComment-317710 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.