Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
}
share|improve this question

1 Answer

If you are drawing on Graphics2D, you can use the fill(Shape s) Method and pass your Shape, e.g.:

int w = x2-x1;
int h = y2-y1;
g2.fill(new Rectangle2D.Double(x1, y2, w, h));

Or use a Polygon to store the Points of your drawing and pass it as shape.

More Details here: Stroking and Filling Graphics Primitives Graphics2D#fill

share|improve this answer
I’ve tried a polygon but either I am doing something wrong or the polygon just connects all the points as a line while drawing. My guess is that it connects points in the order I add them. Also, there are way too many points if I add all the ones found by the flood fill method. I’ve added some code to the original post. – Pete Sep 23 '12 at 16:40
The polygon holds a list of points. For drawing they are connected in the order they were added, for filling the internal area is filled additionally. If you want to fill the area contained by a list of points, this is the class you'll need. If you not only have the pixels at the margin of the shape, but all pixels to be colored, use fillRect(x, y, 1, 1);. See the provided links for more information. – NCode Sep 23 '12 at 17:20
Thanks for the help. – Pete Sep 23 '12 at 22:57
If this solved your question, please mark my response as solution by clicking the green tick next to it. – NCode Sep 24 '12 at 10:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.