|
<?
$gif = ImageCreateTrueColor(150,150);
$bg = ImageColorAllocate($gif,0,0,255);
$tx = ImageColorAllocate($gif,240,240,240);
ImageFilledRectangle($gif,0,0,200,200,$bg);
ImageString($gif,3,30,90,"Test af GDLIB",$tx);
header("content-type: image/jpeg");
ImageJPEG($gif);
?>
|