<?php $wys=256; $szer=20; $rys=ImageCreate($szer,$wys); for ($x=0;$x<$szer;$x++) { for ($y=0;$y<$wys;$y++) { $r=$y; $g=$y; $b=$y; if ($r>255) $r=255; if ($r<0) $r=0; if ($g>255) $g=255; if ($g<0) $g=0; if ($b>255) $b=255; if ($b<0) $b=0; $kolor=imagecolorallocate($rys, $r, $g, $b); imagesetpixel($rys,$x,$y,$kolor); } } imagepng($rys); imagedestroy($rys); ?>

~mike_mech