Image effect callback; Resize an image resource.
object $image: An image object returned by image_load().
array $data: An array of attributes to use when performing the resize effect with the following items:
bool TRUE on success. FALSE on failure to resize image.
function image_resize_effect($image, array $data) {
if (!image_resize($image, $data['width'], $data['height'])) {
watchdog('image', 'Image resize failed using the %toolkit toolkit on %path (%mimetype, %dimensions)', array(
'%toolkit' => $image->toolkit
->getPluginId(),
'%path' => $image->source,
'%mimetype' => $image->info['mime_type'],
'%dimensions' => $image->info['width'] . 'x' . $image->info['height'],
), WATCHDOG_ERROR);
return FALSE;
}
return TRUE;
}