
Użytkownik

Warnings: 0
Posts: 149
Joined: 12/12/2010 00:04
|
Susosi tą tabelkę trzeba ,,uzupełnić'' w php dopiero. Sądzę, że jeśli dasz samą grafikę to rafalh sobie już wszytko uzupełni, lecz jeśli jesteś wyznawcą żelaznej zasady DIY to możesz wszytko wykonać sam ...
przykład
<?php
/* zmienne */
$nick = "Hello_Kitty";
$dddmplayed = "23423";
$dddmwins = "3232";
$firstinrace = "23";
$secondinrace = "43";
$thridinrace = "324";
$online = "NO";
$cash = "-123132423";
$points = "1234";
$playtime = "3108:54:22";
$toptimes = "0";
$rank = "kopytko kopytko <3333 ";
/* obrazy */
$img = imagecreatefrompng("img/tlo.png");
/* czcionki */
$rage_italic = "img/rage_italic.ttf";
$arial = "img/arial.ttf";
/* kolory */
$white = imagecolorallocate($img, 255, 255, 255);
$grey = imagecolorallocate($img, 128, 128, 128);
$fushia = imagecolorallocate($img, 236, 172, 210);
$black = imagecolorallocate($img, 0, 0, 0);
/* nick */
imagettftext($img, 15, 0, 20, 30, $white, $rage_italic, $nick);
/* ^ img, rozmiar czcionki, obrót o x stopni, umieszczenie w osi x, umieszczenie w osi y, kolor, czcionki, text */
/* tabelka */
imagettftext($img, 9, 0, 8, 66, $white, $arial, "DD/DM played : ".$dddmplayed);
imagettftext($img, 9, 0, 8, 82, $white, $arial, "DD/DM wins : ".$dddmwins);
imagettftext($img, 9, 0, 8, 96, $white, $arial, "First in race : ".$firstinrace);
imagettftext($img, 9, 0, 8, 110, $white, $arial, "Second in race : ".$secondinrace);
imagettftext($img, 9, 0, 8, 124, $white, $arial, "Thrid in race : ".$thridinrace);
imagettftext($img, 9, 0, 8, 138, $white, $arial, "Rank : ".$rank);
imagettftext($img, 9, 0, 136, 66, $white, $arial, "Cash : ".$cash);
imagettftext($img, 9, 0, 136, 82, $white, $arial, "Points : ".$points);
imagettftext($img, 9, 0, 136, 96, $white, $arial, "Playtime : ".$playtime);
imagettftext($img, 9, 0, 136, 110, $white, $arial, "Toptimes : ".$toptimes);
imagettftext($img, 9, 0, 136, 124, $white, $arial, "Online : ".$online);
header('Content-Type: image/png');
imagepng($img);
imagedestroy($img);
?>

If you think that I'm a bitch you should meet my mother.
|