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="imag es/zdefault.jpg"; $source=ImageCr eateFromJPEG($i mg_name);
$white=imagecol orallocate($sou rce,255,255,255 );
$grey=imagecolo rallocate($sour ce,213,224,225) ;
$black=imagecol orallocate($sou rce,0,0,0);
$font='arial.tt f';
imagettftext($s ource,28,0,12,3 9,$grey, $font, $text);
imagettftext($s ource,28,0,10,3 7,$black,$font, $text);
$new_name="cat/$kk[1].jpg";
ImageJPEG($sour ce,$new_name);
imagedestroy($s ource);
?>
Whats the best way to do it ? .
<?php
$text=$kk[4];
if ($kk[4]=="") {$text="MAIN MENU"; $kk[1]="mainmenu"; }
$img_name="imag es/zdefault.jpg"; $source=ImageCr eateFromJPEG($i mg_name);
$white=imagecol orallocate($sou rce,255,255,255 );
$grey=imagecolo rallocate($sour ce,213,224,225) ;
$black=imagecol orallocate($sou rce,0,0,0);
$font='arial.tt f';
imagettftext($s ource,28,0,12,3 9,$grey, $font, $text);
imagettftext($s ource,28,0,10,3 7,$black,$font, $text);
$new_name="cat/$kk[1].jpg";
ImageJPEG($sour ce,$new_name);
imagedestroy($s ource);
?>
Comment