Hi!
Ich habe folgenden Code:
Das funktioniert auch ohne probleme, jedoch will ich jetzt dass das Bild jeweils der grösse des Textes entspricht. (Font: tahoma)
Ich habe folgenden Code:
PHP-Code:
<?php
$datei = fopen("counter.txt","r+");
$count = fread($datei,filesize("counter.txt"));
rewind($datei);
fwrite($datei,++$count);
fclose($datei);
$ipadr = $_SERVER['REMOTE_ADDR'];
$date = date("D.m.Y");
$zeitstempel = time();
$time = strftime('%T', $zeitstempel);
header ("Content-type: image/gif");
$im = imagecreate (820, 30);
$col1 = imagecolorallocate ($im, 239, 255, 242);
$col2 = imagecolorallocate ($im, 0, 0, 0);
imagecolortransparent($im, $col1);
imagettftext ($im,12, 0, 10, 20, $col2, "8.ttf", "Date: $date, Nr: $count, IP Adress: $ipadr");
imagegif ($im);
imagedestroy ($im);
?>
Kommentar