Hallo,
De komende script geeft een error bericht op mijn Ubuntu, maar hij doet het wel in een windows platform.
header("Content-type: image/png");
$image=imagecreate(400,200);
$red=imagecolorallocate($image,255,0,0);
$blue=imagecolorallocate($image,0,0,255);
$font="tahoma.ttf";
imageTTFtext($image, 50,0,20, 100, $blue,$font, "Test!");
imagepng($image);
?>
Weet iemand hoe php in ubuntu gecompileerd kan worden met TrueTypefonts?
Alvast bedankt,