我想使用我拥有的线条类为我的程序制作一个填充桶工具。我的填充桶将记录为填充一个区域而需要绘制的所有线条,例如:
http://i.imgur.com/Cywh8xU.png - 在这张图片中,我点击的点是红色圆圈,它会为每条线找到 2 个点(起点和终点)。我显然没有画出所有的线条,但这是我所拥有的基本概念。
我遇到的问题是图像最终看起来像这样,我不知道为什么。 http://i.imgur.com/IXHgEf2.jpg
这是我到目前为止查找所有行的代码:
公共类 FillBucket{
private BufferedImage image;
private Fill currentFill;
private Line currentLine;
private Queue<Point> pointsToVisit;
@Override
public void mousePressed(Point point) {
super.mousePressed(point);
if(pointIsOnCanvas(point)) {
image = new BufferedImage(getCanvas().getPreferredSize().width, getCanvas().getPreferredSize().height, BufferedImage.TYPE_INT_RGB);
Graphics2D g2 = (Graphics2D) image.getGraphics();
getCanvas().paint(g2);
currentFill = new Fill(getColor());
pointsToVisit = new LinkedList<>();
createPoints(point, image.getRGB(point.x, point.y));
getCanvas().addDrawable(currentFill);
getCanvas().repaint();
}
}
private void createPoints(Point clickedPoint, int clickedColor) {
pointsToVisit.add(clickedPoint);
while(!pointsToVisit.isEmpty()) {
Point testPoint = pointsToVisit.poll();
if(testPoint.x > 0 && testPoint.x < image.getWidth() && testPoint.y > 0 && testPoint.y < image.getHeight()
&& image.getRGB(testPoint.x, testPoint.y) == clickedColor) {
while(testPoint.x > 0 && image.getRGB(testPoint.x, testPoint.y) == clickedColor) {
testPoint.x--;
}
currentLine = new Line(getColor(), 5);
currentLine.addPoint(new Point(testPoint));
while(testPoint.x < image.getWidth() && image.getRGB(testPoint.x, testPoint.y) == clickedColor) {
pointsToVisit.add(new Point(testPoint.x, testPoint.y+1));
pointsToVisit.add(new Point(testPoint.x, testPoint.y-1));
image.setRGB(testPoint.x, testPoint.y, getColor().getRGB());
testPoint.x++;
}
currentLine.addPoint(new Point(testPoint));
currentFill.addLine(currentLine);
}
}
}
}
这是我的线类的基础知识:
public class Line {
private List<Point> points;
private int width;
/**
* Create a Line
* @param color - The color of the line
* @param width - The width of the line
*/
public Line(Color color, int width){
points = new LinkedList<>();
setColor(color);
setWidth(width);
}
/**
* Add a Point to the Line
* @param p - The Point to add to the Line
*/
public void addPoint(Point p) {
points.add(p);
}
@Override
public void draw(Graphics2D g2) {
super.draw(g2);
g2.setStroke(new BasicStroke(getWidth(), BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND));
for(int i=1; i<points.size(); i++)
g2.drawLine(points.get(i-1).x, points.get(i-1).y, points.get(i).x, points.get(i).y);
}
}
这是我的填充类:
public class Fill{
List<Line> lines;
/**
* Create a Fill
* @param color - The Color of the Fill
*/
public Fill(Color color){
lines = new LinkedList<>();
setColor(color);
}
/**
* Add a Line to the Fill
* @param l - The Line to add
*/
public void addLine(Line l) {
lines.add(l);
}
@Override
public void draw(Graphics2D g2) {
super.draw(g2);
for(Line l: lines) {
l.draw(g2);
}
}
任何帮助将不胜感激,谢谢。