Bild erstellen

Danke, habe es nun so gemacht:

PHP:
$image = imagecreate (300, 150);
$color_body = imagecolorallocate ($image, 255, 255, 255);
imagefill ($image, 0, 0, $color_body);
imagejpeg ($image, "test.jpg");

Ich schmeiße die Variablen nicht um, ich kannte die Funktion "imagefill" einfach noch nicht. Deshalb fragte ich.
 
Zurück