function hires_images_effect in Hi-Res Images 7
Image effect callback; Hi-Res.
Parameters
$image: An image object returned by image_load().
$data: An array of attributes to use when performing the effect.
Return value
TRUE on success. FALSE on failure to resize image.
1 string reference to 'hires_images_effect'
- hires_images_image_effect_info in ./
hires_images.module - Implements hook_image_effect_info().
File
- ./
hires_images.module, line 34 - Main module file for Hi-Res Images.
Code
function hires_images_effect($image, array $data) {
return TRUE;
}