watermark_50.imagecache_preset.inc 557 B

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