rotate_scale.imagecache_preset.inc 701 B

1234567891011121314151617181920212223242526272829303132333435363738
  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_scale'] = array (
  12. 'name' => 'rotate_scale',
  13. '#weight' => 1.2,
  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. 2 => array (
  26. 'weight' => '2',
  27. 'module' => 'image',
  28. 'name' => 'image_scale',
  29. 'data' => array (
  30. 'width' => '',
  31. 'height' => '150',
  32. 'upscale' => TRUE,
  33. ),
  34. ),
  35. ),
  36. );