alles wird mit in die Auswahl gepackt $images[] = $path . "/" . $value; } } return $images; } $images = getImages($path); $imagekey = array_rand($images); $imagepath = $images[$imagekey]; if (pathinfo($imagepath, PATHINFO_EXTENSION) == "jpg") $image = imagecreatefromjpeg($imagepath); if (pathinfo($imagepath, PATHINFO_EXTENSION) == "png") $image = imagecreatefrompng($imagepath); if (pathinfo($imagepath, PATHINFO_EXTENSION) == "gif") $image = imagecreatefromgif($imagepath); if ($tn) { $newsize = 0.02 * $size * imagesx($image); $tb = imagettfbbox($newsize, 0, $font, $text); $x = ceil((imagesx($image) - $tb[2]) / 2); $y = ceil((imagesy($image) - $tb[5]) / 2); imagettftext($image, $newsize, 0, $x, $y, $color, $font, $text); } imagepng($image); imagedestroy($image);