|
Posted by Krustov on 12/01/06 20:34
The following works fine - but would like to center the text .
Whats the best way to do it ? .
<?php
$text=$kk[4];
if ($kk[4]=="") {$text="MAIN MENU"; $kk[1]="mainmenu";}
$img_name="images/zdefault.jpg"; $source=ImageCreateFromJPEG($img_name);
$white=imagecolorallocate($source,255,255,255);
$grey=imagecolorallocate($source,213,224,225);
$black=imagecolorallocate($source,0,0,0);
$font='arial.ttf';
imagettftext($source,28,0,12,39,$grey, $font, $text);
imagettftext($source,28,0,10,37,$black,$font,$text);
$new_name="cat/$kk[1].jpg";
ImageJPEG($source,$new_name);
imagedestroy($source);
?>
Navigation:
[Reply to this message]
|