1 image.module image_effect_apply($image, $effect)

Given an image object and effect, perform the effect on the file.

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.:

File

core/modules/image/image.module, line 1322
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'];
  return $function($image, $effect['data']);
}