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\).

IM code:

<?php  
$cmd 
" input.jpg -pointsize 50 -font ../verdane.ttf -fill rgba\(0,0,0,0.4\) ".
" -gravity center -annotate 40x40+0+0 \"Rubblewebs\" "
exec("convert $cmd output.jpg"); 
?> 
Image to go with Rotated transparent text example code