function image_effect_apply

Applies an image effect to the image object.

Parameters

$image: An image object returned by image_load().

$effect: An image effect array.

Return value

TRUE on success. FALSE if unable to perform the image effect on the image.

1 call to image_effect_apply()
image_style_create_derivative in drupal/modules/image/image.module
Creates a new image derivative based on an image style.

File

drupal/modules/image/image.module, line 1339
Exposes global functionality for creating image styles.

Code

function image_effect_apply($image, $effect) {
  module_load_include('inc', 'image', 'image.effects');
  $function = $effect['effect callback'];
  if (function_exists($function)) {
    return $function($image, $effect['data']);
  }
  return FALSE;
}