image_gd_check_settings()Verify GD2 settings (that the right version is actually installed).
A boolean indicating if the GD toolkit is available on this machine.
modules/system/image.gd.inc, line 58
<?php
function image_gd_check_settings() {
if ($check = get_extension_funcs('gd')) {
if (in_array('imagegd2', $check)) {
// GD2 support is available.
return TRUE;
}
}
return FALSE;
}
?>