| Versionen | |
|---|---|
| drupal6 – drupal7 | 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/
<?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;
}
?>
Kommentare
Kommentar hinzufügen