Mega Code Archive

 
Categories / Php / Graphics
 

Draw a rectangle

<?php     $image = imagecreate(400,300);     $white = imagecolorallocate($image, 255, 255, 255);     imagefilledrectangle($image, 10, 10, 390, 290, $white); ?>