rotate_scale.imagecache_preset.inc in ImageCache Actions 6.2
File
canvasactions/tests/rotate_scale.imagecache_preset.inc
View source
<?php
$presets['rotate_scale'] = array(
'presetname' => 'rotate_scale',
'#weight' => 1.2,
'actions' => array(
1 => array(
'weight' => '1',
'module' => 'imagecache',
'action' => 'imagecache_rotate',
'data' => array(
'degrees' => '15',
'random' => 0,
'bgcolor' => '',
),
),
2 => array(
'weight' => '2',
'module' => 'imagecache',
'action' => 'imagecache_scale',
'data' => array(
'width' => '',
'height' => '150',
'upscale' => TRUE,
),
),
),
);