| 
 | gd_infoRetrieve information about the currently installed GD library Description
   array gd_info
    ( void
   ) Gets information about the version and capabilities of the installed GD library. Return ValuesReturns an associative array. 
 
 
 Examples
 Example #1 Using gd_info 
<?phpThe above example will output something similar to: 
array(9) {
  ["GD Version"]=>
  string(24) "bundled (2.0 compatible)"
  ["FreeType Support"]=>
  bool(false)
  ["T1Lib Support"]=>
  bool(false)
  ["GIF Read Support"]=>
  bool(true)
  ["GIF Create Support"]=>
  bool(false)
  ["JPEG Support"]=>
  bool(false)
  ["PNG Support"]=>
  bool(true)
  ["WBMP Support"]=>
  bool(true)
  ["XBM Support"]=>
  bool(false)
}
Changelog
 
 See Also
 
 |