function symbolize_1x1_spacer($bgcolor)
{
$width = 1;
$height = 1;
$img = imagecreatetruecolor($width,$height);
$bgcolor = imagecolorallocate($img, $bgcolor[0], $bgcolor[1], $bgcolor[2]);
imagefill($img, 0, 0, $bgcolor);
imagecolortransparent($img, $bgcolor);
imagesetpixel($img,0,0,$bgcolor);
return $img;
}
als farbe übergeb ich weiss.
also:
$bgcolor = array(255,255,255);
$i = symbolize_1x1_spacer($bgcolor);
imagepng($i,"test.png");
ne ahnung wo der fehler steckt? ich grieg immer ein schwarzes bild ;(