I am looking for a method to draw a filled shape by using the boundary points. I will get the points by using the flood fill method on a snapshot of the panel. What I basically want to do is a flood fill method but I don’t want to do this on an image. I want to draw a shape of the filled zone instead. Since I have implemented a freehand draw utility, it can take the form of any shape. So what’s the best way to do that?
Thanks in advance!
private void createNewPolygonIte(int x, int y, int oldColor)
{
List<Point> list = new ArrayList();
list.add(new Point(x,y));
while(!list.isEmpty())
{
Point p = list.remove(0);
if(getColor(p) == oldColor)
{
//here I am using a temporary screen of the panel to get/set color
setColor(p.x, p.y, colorChooser.getColor());
list.add(new Point(p.x, p.y + 1));
list.add(new Point(p.x, p.y - 1));
list.add(new Point(p.x + 1, p.y));
list.add(new Point(p.x - 1, p.y));
}
else
{
currentPolygon.addPoint(p);
}
}
}
//to draw them
for(MyPolygon po : polygons)
{
g2d.setColor(po.getColor());
g2d.fill(po);
}