View Single Post
ישן 13-07-06, 17:11   # 15
drowkid
חבר בקהילה
 
מיני פרופיל
תאריך הצטרפות: Apr 2006
מיקום: מרכז - איזור כפ"ס
הודעות: 138

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($im5,0,$linenum$line,$textcolor);
$linenum $linenum+15;
}

    
imagepng($im); 
?>
__________________

Last edited by drowkid; 13-07-06 at 17:14..
  Reply With Quote