image_gd_check_settings()
drupal/modules/system/image.gd.inc, line 66
Verify GD2 settings (that the right version is actually installed).
A boolean indicating if the GD toolkit is available on this machine.
| Name | Description |
|---|---|
| Image toolkits | Drupal's image toolkits provide an abstraction layer for common image file manipulations like scaling, cropping, and rotating. The abstraction frees module authors from the need to support multiple image libraries, and it allows site... |
function image_gd_check_settings() {
if ($check = get_extension_funcs('gd')) {
if (in_array('imagegd2', $check)) {
// GD2 support is available.
return TRUE;
}
}
return FALSE;
}