Ich wollte ne Dynamische Signatur machen doch irgendwie zeigt er mir nur ne weiße Seite an.
Wenn ich dir als PHP direkt auf rufe geht es doch wenn ich die in meinem CP einbinde nicht...
und die Signatur PHP
PHP
<?php
header ("Content-type: image/png");
$font = 2;
$text = "blubb";
$geb = mktime(0,0,0, 5, 11, 2007);
//$now = time();
//$text = $now-$geb;
function formatetimestamp($until){
$now = time();
$difference = $until - $now;
$days = floor($difference/86400);
$difference = $difference - ($days*86400);
$hours = floor($difference/3600);
$difference = $difference - ($hours*3600);
$minutes = floor($difference/60);
$difference = $difference - ($minutes*60);
$seconds = $difference;
$output = "Nur noch $days Tage, $hours Stunden, $minutes Minuten und $seconds Sekunden.";
return $output;
}
$text = formatetimestamp($geb);
//$text = strftime("%d.%m.%Y %H:%M:%S",$geb);
$zeit = strftime("%d.%m.%Y %H:%M:%S",time());
$image = imagecreate(486, 60);
$im = ImageCreateFromPNG("http://hagclan.ha.ohost.de/blubb/bild.png");
$black = imagecolorallocate($image, 50, 50, 50);
$white = imagecolorallocate($image, 255, 255, 255);
//$browser = getenv('HTTP_USER_AGENT');
imagecopy($image, $im, 0, 0, 0, 0, 486, 60);
imagealphablending($image, false);
$random = rand(1, 28);
$smilie = ImageCreateFromPNG("http://hagclan.ha.ohost.de/blubb/pics/Smiley".$random.".png");
imagecopy($image, $smilie, 210, 15, 0, 0, 25, 25);
imagestring($image, $font, 0, 2, $zeit, $black);
//imagestring($image, $font, 120, 2, "browser: ".getenv('HTTP_USER_AGENT'), $black);
//imagestring($image, $font, 250, 23, "ip: ".getenv('REMOTE_ADDR'), $black);
imagestring($image, $font, 250, 2, "ip: ".getenv('REMOTE_ADDR'), $black);
imagestring($image, $font, 0, 23, "schwachsinniges script by r3nt5ch3r", $black);
imagestring($image, $font, 0, 45, $text, $black);
//$trans = imagecolorat($image,1,1);
//imagecolortransparent($image,$trans);
//imagesavealpha($image, true);
imagepng($image);
imagedestroy($image);
?>
Alles anzeigen
und wenn ich das gleich in die index.php mache kommt auch nur eine weiße Seite...
MFG GamerXIOS