Showing font styled to Italic
ImageMagick for some reason as well as changing the font to bold !
<?php
exec("convert -size 230x130 xc:lightblue -font verdana.ttf -pointsize 25 -style italic \\
-draw \"gravity NorthWest fill black text 0,0 'The quick red fox
jumped over the
lazy brown dog'\" font1.png");
?>
Showing font underlined
<?php
exec("convert -size 230x130 xc:lightblue -font verdana.ttf -pointsize 25 \\
-draw \"gravity NorthWest fill black Decorate Underline text 0,0 'The quick red fox
jumped over the
lazy brown dog.'\" font2.png");
?>