dsdsdsd
$image = imagecreatetruecolor( 100, 30 );
$bgcolor = imagecolorallocate( $image, 255, 255, 225 );
imagefill( $image, 0, 0, $bgcolor );
? ? for($i=0;$i<200;$i++){
? ? ? ? $pointcolor = imagecolorallocate($image,rand(50,200),rand(50,200),rand(50,200));?
? ? ? ? imagesetpixel($image,rand(1,199),rand(1,29),$pointcolor);
? ? ? ??
? ? ? ? }
? ? header( 'content-type: image/png' );
imagepng( $image );
imagedestroy( $image );
2016-01-16
rand(1,199)???