rotate_alpha.imagecache_preset.inc 683 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // $ID: $
  3. /**
  4. * @file
  5. * Test imagecache preset.
  6. *
  7. * Created on Dec 29, 2009
  8. *
  9. * @author 'dman' Dan Morrison http://coders.co.nz/
  10. */
  11. $presets['rotate_alpha'] = array (
  12. 'name' => 'rotate_alpha',
  13. '#weight' => 1.4,
  14. 'effects' => array (
  15. 1 => array (
  16. 'weight' => '1',
  17. 'module' => 'image',
  18. 'name' => 'image_rotate',
  19. 'data' => array (
  20. 'degrees' => '15',
  21. 'random' => 0,
  22. 'bgcolor' => '',
  23. ),
  24. ),
  25. 3 => array (
  26. 'weight' => '3',
  27. 'module' => 'imagecache_coloractions',
  28. 'name' => 'coloractions_convert',
  29. 'data' => array (
  30. 'format' => 'image/png',
  31. ),
  32. ),
  33. ),
  34. );