Er zeigt mir hier kein Bild an
$font = 'verdanab.ttf';
$img = ImageCreateFromPNG('banner.png');
$f_color = imagecolorallocate($img, 255, 255, 255);
$f_color_g = imagecolorallocate($img, 4, 165, 4);
$f_color_r = imagecolorallocate($img, 198, 0, 0);
if($status == "Online") {
imagettftext($img, 12, 0, 420, 132, $f_color_g, $font, $status);
}else {
imagettftext($img, 12, 0, 420, 132, $f_color_r, $font, $status);
}
imagettftext($img, 10, 0, 335, 30, $f_color, $font, $row->Name);
imagettftext($img, 10, 0, 335, 64, $f_color, $font, $row->Level);
imagettftext($img, 9, 0, 335, 96, $f_color, $font, $f);
ImagePNG($img);
ImageDestroy($img);
Alles anzeigen
Das Bild gibt es in den Ordner aber es wird nicht angezeigt.
Weiß einer wiso?