Change font to Italic

<?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");
?> This code creates a light blue rectangle then writes italic text onto it.