watermark_50.imagecache_preset.inc 546 B

123456789101112131415161718192021222324252627
  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['watermark_50'] = array (
  11. 'name' => 'watermark_50',
  12. '#weight' => 4.1,
  13. 'effects' => array (
  14. 0 => array (
  15. 'weight' => '0',
  16. 'module' => 'imagecache_canvasactions',
  17. 'name' => 'canvasactions_file2canvas',
  18. 'data' => array (
  19. 'xpos' => 'right+20',
  20. 'ypos' => 'bottom',
  21. 'alpha' => '50',
  22. 'path' => 'misc/druplicon.png',
  23. ),
  24. ),
  25. ),
  26. );