Ah, ok. Das ist schon mal eine Info.
Wo liegt der Zusammenhang mit TS?
<?
$text = "Serverstatus: xxx";
$pic=ImageCreate(600, 30); //(breite, hohe)
$col1=ImageColorAllocate($pic,0,0,0);
$col2=ImageColorAllocate($pic,255,255,255);
ImageFilledRectangle($pic, 0, 0, 600, 30, $col2);
ImageString($pic, 5, 5, 5, $text, $col1);
Header("Content-type: image/jpeg");
ImageJPEG($pic);
ImageDestroy($pic);
?>
<?
header ("Content-type: image/png");
$text = "Serverstatus: xxx";
$col1 = imagecolorallocate($pic,0,0,0);
$col2 = imagecolorallocate($pic,255,255,255);
$pic = @imagecreate(600, 30);
or die ("Kann keinen neues Bild erzeugen");
imagefilledrectangle($pic, 0, 0, 600, 30, $col2);
imagestring($pic, 5, 5, 5, "$text", $col1);
imagepng($pic);
imagedestroy($pic);
?>
Im Browser wird der Banner angezeigt.
http://www.utn-hosting.de/banner/teamspeak_v5.jpg=C:\Users\kev\AppData\Roaming\teamspeak2\1440C396-F7EB-46B2-ADE2-B21843049440.jpg
We use essential cookies to make this site work, and optional cookies to enhance your experience.