function imagick_rotate_defaults in Imagick 7
Returns the default settings of this effect.
1 call to imagick_rotate_defaults()
- imagick_rotate_form in effects/
imagick.rotate.inc - Form structure for the image rotate form.
1 string reference to 'imagick_rotate_defaults'
- imagick_image_effect_info in ./
imagick.module - Implements hook_image_effect_info()
File
- effects/
imagick.rotate.inc, line 96
Code
function imagick_rotate_defaults() {
return array(
'degrees' => 10,
'bgcolor' => '#FFFFFF',
'random' => 0,
);
}