rotate_alpha_gif.imagecache_preset.inc 700 B

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