Prosiłbym o pomoc.
Mam tylko tyle:
<? $image = imagecreatetruecolor(400, 300); $bg = imagecolorallocate($image, 0, 0, 0); imagecolortransparent($image, $bg); $col_ellipse = imagecolorallocate($image, 200, 200, 200); imagefilledrectangle($image, 200, 10, 20, 200, $col_ellipse); ImageString($image, 250, 250, 10, "tekst1", $col_ellipse); ImageString($image, 250, 250, 30, "tekst1", $col_ellipse); imagepng($image); ?>