13-07-06, 19:11
|
# 14
|
חבר וותיק
|
ציטוט:
נכתב במקור על ידי drowkid
http://ofry.net/gd.php
PHP קוד:
<?php
header("content-type:image/png");
$im = imagecreate(180,100);
$text[] = "username:".$x['username'];
$text[] = "level:".$x['level'];
$text[] = "rank:".$x['rank'];
$bg = imagecolorallocate($im,255,255,255);
$textcolor = imagecolorallocate($im,0,0,0);
$linenum = "0";
foreach ($text as $line)
{
imagestring($im, 5,0,$linenum, $line,$textcolor);
$linenum = $linenum+15;
}
imagepng($im);
?>
|
תודה רבה, זה עובד 
|
|
|