<?php
$name = $_REQUEST['name'];
$street = $_REQUEST['street'];
$address = $_REQUEST['address'];
$phone = $_REQUEST['phone'];

$img = imagecreatetruecolor(300,100);
$bgcol = imagecolorallocate($img,255,255,255);
$hatcol = imagecolorallocate($img,rand(128,255),rand(128,255),rand(128,255));
$headcol = imagecolorallocate($img,255,225,205);
$bodycol = imagecolorallocate($img,0,0,0);
$eyecol = imagecolorallocate($img,rand(100,200),rand(0,128),rand(128,255));
$mouthcol = imagecolorallocate($img,rand(128,255),0,0);
imagefill($img,0,0,$bgcol);
imagestring($img,5,8,4,$name,$bodycol);
imagestring($img,5,25,24,$street,$bodycol);
imagestring($img,5,25,44,$address,$bodycol);
imagestring($img,5,25,74,$phone,$bodycol);
imagesetthickness($img,6);
imagerectangle($img,0,0,299,99,$bodycol);
header("Content-type: image/png");
imagepng($img);
imagedestroy($img);
?>
