Ich weiß nicht wie ich es machen soll.. Ich möchte nur den Useragent anzeigen lassen
PHP:
<?php
$text1 = "Dein Useragent: ";
$grafik = "bg.png";
$font_g = 10; //Schriftgröse
$font_g_c = 15; //Counter Schriftgröse
$font_g_s = 13; //Spruch Schriftgröße
$font_g_s2 = 7; //Schriftgröße Sonstiges
$font = "tahoma.ttf"; //Schrift (ttf)
//Bild einlesen
$img = imageCreateFromPNG($grafik);
//Farben schwarz, weiß, rot, blau, grün
$schwarz = imageColorAllocate($img, 0, 0, 0);
$weiß = imageColorAllocate($img, 999, 999, 999);
$rot = ImageColorAllocate($img, 255, 0, 0);
$blau = ImageColorAllocate($img, 0, 0, 255);
$gruen = ImageColorAllocate($img, 27, 189, 0);
$useragent = "echo $HTTP_SERVER_VARS[HTTP_USER_AGENT];";
ImageTTFText($img, $font_g, 0, 10, 25, $weiß, $font, $text1);
ImageTTFText($img, $font_g, 0, 10, 40, $weiß, $font, getuseragent());
//Header
header("Content-type: image/PNG");
//Ausgeben
imagePNG($img);
//Speicher freigeben
imageDestroy($img);
?>