Image effect callback; Scale and crop an image resource.
object $image: An image object returned by image_load().
array $data: An array of attributes to use when performing the scale and crop effect with the following items:
bool TRUE on success. FALSE on failure to scale and crop image.
function image_scale_and_crop_effect($image, array $data) {
if (!image_scale_and_crop($image, $data['width'], $data['height'])) {
watchdog('image', 'Image scale and crop 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;
}