function imagecache_autorotate_imagecache_actions in ImageCache Actions 6
Same name and namespace in other branches
- 6.2 autorotate/imagecache_autorotate.module \imagecache_autorotate_imagecache_actions()
Implementation of hook_imagecache_actions.
Return value
array An array of information on the actions implemented by a module.
File
- ./
imagecache_autorotate.module, line 32 - Autorotate image based on EXIF Orientation tag. http://sylvana.net/jpegcrop/exif_orientation.html
Code
function imagecache_autorotate_imagecache_actions() {
$actions = array(
'imagecache_autorotate' => array(
'name' => 'Autorotate',
'description' => t('Add autorotate image based on EXIF Orientation.'),
),
);
return $actions;
}