Drawing a Filled Rectangle with imagefilledrectangle() : Rectangle « Graphics Image « PHP






Drawing a Filled Rectangle with imagefilledrectangle()

<?php
 header("Content-type: image/gif");
 $image = imagecreate( 200, 200 );
 $red = imagecolorallocate($image, 255,0,0);
 $blue = imagecolorallocate($image, 0,0,255 );
 imagefilledrectangle( $image, 19, 19, 179, 179, $blue );
 imagegif( $image );
?>

           
       








Related examples in the same category

1.Fill Rectangle