function andromeda_slideshow_image_default_styles in Andromeda Slideshow 7.2
Same name and namespace in other branches
- 7 andromeda_slideshow.module \andromeda_slideshow_image_default_styles()
Implements hook_image_default_styles().
File
- ./
andromeda_slideshow.module, line 701 - Slideshow for the Andromeda (http://drupal.org/project/andromeda) Theme
Code
function andromeda_slideshow_image_default_styles() {
$styles = array();
// Exported image style: andromeda_slideshow_image
$styles['andromeda_slideshow_thumb'] = array(
'name' => 'andromeda_slideshow_thumb',
'effects' => array(
2 => array(
'label' => 'Scale and crop',
'help' => 'Scale and crop will maintain the aspect-ratio of the original image, then crop the larger dimension. This is most useful for creating perfectly square thumbnails without stretching the image.',
'effect callback' => 'image_scale_and_crop_effect',
'form callback' => 'image_resize_form',
'summary theme' => 'image_resize_summary',
'module' => 'image',
'name' => 'image_scale_and_crop',
'data' => array(
'width' => '50',
'height' => '50',
),
'weight' => '1',
),
),
);
return $styles;
}