rotate_alpha_gif.imagecache_preset.inc 692 B

123456789101112131415161718192021222324252627282930313233343536
  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_gif'] = array (
  12. 'name' => 'rotate_alpha_gif',
  13. '#weight' => 1.5,
  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/gif',
  31. ),
  32. ),
  33. ),
  34. );