PHP ver gevorderde |
|
bv.
image.php?id=...
<?
$user = getUserInfo($_GET['id']);
header("Content-type: image/png");
$im = imagecreate(110, 20);
imagecolorallocate($im, 255, 255, 255); //background
$color = imagecolorallocate($im, 0, 0, 0);
imagestring($im, 1, 5, 5, $user->email, $color);
imagepng($im);
imagedestroy($im);
image.php?id=... <? $user = getUserInfo($_GET['id']); header("Content-type: image/png"); $im = imagecreate(110, 20); imagecolorallocate($im, 255, 255, 255); //background $color = imagecolorallocate($im, 0, 0, 0); imagestring($im, 1, 5, 5, $user->email, $color); imagepng($im); imagedestroy($im);
en dan gebruik je een image-tag op de plaats dat het moet komen |