You are here

function imagick_image_toolkits in Imagick 7

Implements hook_image_toolkits().

File

./imagick.module, line 80
Imagick toolkit for image manipulation within Drupal.

Code

function imagick_image_toolkits() {
  return array(
    'imagick' => array(
      'title' => t('Imagick toolkit'),
      'available' => TRUE,
    ),
  );
}