Change font to Italic ( Anthony 14/6/2008 )

This code creates a light blue rectangle then writes italic text onto it.

IM code:

<?php
$cmd 
"-size 150x40 xc:lightblue -font verdana.ttf".
" -pointsize 25 -style italic -draw"
" \"gravity center fill black text 0,0 'Italic font'\"";
exec("convert $cmd output.png"); 
?> 
Image to go with Change font to Italic example code