imagerectangle -- 画一个矩形
int imagerectangle ( resource image, int x1, int y1, int x2, int y2, int col)
imagerectangle() 用 col 颜色在 image 图像中画一个矩形,其左上角坐标为 x1, y1,右下角坐标为 x2, y2。图像的左上角坐标为 0, 0。
function ImageGrid(&$im,$startx,$starty,$width,$height,$xcols,$yrows,&$color) {
for ( $x=0; $x < $xcols; $x++ ) {
for ( $y=0; $y < $yrows; $y++ ) {
$x1 = $startx + ($width * $x);
$x2 = $startx + ($width * ($x+1));
$y1 = $starty + ($height * $y);
$y2 = $starty + ($height * ($y+1));
ImageRectangle($im, $x1, $y1, $x2, $y2, $color);
}
}
} // end function ImageGrid