27.11.2003, 21:38
mal probieren:
Zitat:<?php
$tag = "26.11";
$datum = date("d.m", time());
$ergebnis = $tag - $datum;
if ($ergebnis == "0")
{
$text[] = "HEUTE IST WEIHNACHTEN";
}
elseif ($ergebnis == "1")
{
$text[] = "Noch ein Tag bis Weihnachten";
}
elseif ($ergebnis == "-1")
{
$text[] = "WEIHNACHTEN IST VORBEI!!!!";
}
else
{
$text[] = "Noch ".$ergebnis." Tage bis Weihnachten";
}
$font = 3;
$max_len = 0;
foreach($text as $str) {
if(strlen($str)>$max_len) {
$max_len = strlen($str);
}
}
$width = ImageFontWidth($font) * $max_len;
$height = ImageFontHeight($font)*count($text);
$im = imagecreate($width, $height);
$black = ImageColorAllocate ($im, 0, 0, 0);
// Hintergrundfarbe
$white = ImageColorAllocate ($im, 126, 144, 99);
$orange = ImageColorAllocate ($im, 87, 109, 88);
imagecolortransparent ($im, imagecolorat ($im, 0, 0));
$y = 0;
foreach($text as $str) {
imagestring ($im, $font, 0, $y, $str, $orange);
$y = $y + ImageFontHeight($font);
}
Imagepng($im);
?>