当前位置: 代码迷 >> C语言 >> 关于floodfill填充问题
  详细解决方案

关于floodfill填充问题

热度:271   发布时间:2006-03-22 08:19:00.0
关于floodfill填充问题

#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>

int main(void)
{
int gdriver = DETECT, gmode, errorcode;
int i,j,per=20;
int m=4,n=3;
initgraph(&gdriver, &gmode, "");
errorcode = graphresult();
if (errorcode != grOk)
{
printf("Graphics error: %s\n",grapherrormsg(errorcode));
printf("Press any key to halt:");
getch();
exit(1);
}
setcolor(5);
rectangle(0,0,n*per,m*per);
for (i=1;i<m;i++)
line(0,i*per,n*per,i*per);
for (i=1;i<n;i++)
line(i*per,0,i*per,m*per);
getch();
for (i=0;i<m;i++)
for (j=0;j<n;j++)
floodfill(j*per+0.5*per,i*per+0.5*per,getmaxcolor());
getch();
closegraph();
}


我的目的是:每一个小格中以白色填充。

搜索更多相关的解决方案: floodfill  

----------------解决方案--------------------------------------------------------
你没有设置 setfillstyle()
而且floodfill()中最后一个参数是边界颜色,不是填充颜色
----------------解决方案--------------------------------------------------------

击中要害。
谢谢。


----------------解决方案--------------------------------------------------------