Snippets - Watermark

Snippets index page

NOTE: Most of the IM snippets have been tested on IM version 6.3.5 There may be some differences if you are using the code on other versions.

Rotated transparent text - Anthony 17/6/2008

Add a transparent text watermark to an image. In this case the text is transparent; the transparency is set with the last value in rgba\(0,0,0,0.4\).

  1. <?php  
  2. $cmd " input.jpg -pointsize 50 -font ../verdane.ttf -fill rgba\(0,0,0,0.4\) ".
  3. " -gravity center -annotate 40x40+0+0 \"Rubblewebs\" "
  4. exec("convert $cmd output.jpg"); 
  5. ?> 

For more examples and information check out the main Imagemagick section.

Image watermark View

Multiple image watermarks View

Rotated transparent text View

Transparent text View

Watermark an animated gif View

Watermark text and shadow View

Watermark tiled text View