function system_image_toolkits

Implements hook_image_toolkits().

File

modules/system/system.module, line 3494

Code

function system_image_toolkits() {
    include_once DRUPAL_ROOT . '/' . drupal_get_path('module', 'system') . '/' . 'image.gd.inc';
    return array(
        'gd' => array(
            'title' => t('GD2 image manipulation toolkit'),
            'available' => function_exists('image_gd_check_settings') && image_gd_check_settings(),
        ),
    );
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.