| Current Path : /home/beeson/public_html/helpwithmath_old/ |
| Current File : //home/beeson/public_html/helpwithmath_old/black.php |
<?php
$im = ImageCreate(200,200);
$white = ImageColorAllocate($im,0xFF,0xFF,0xFF);
$black = ImageColorAllocate($im,0x00,0x00,0x00);
ImageFilledRectangle($im,50,50,150,150,$black);
header('Content-Type: image/png');
ImagePNG($im);
?>