我只是尝试使用FloodFill类,我发现了着色的奇怪问题。
让我们从代码开始:
public class FloodFill {
public void floodFill(Bitmap image, Point node, int targetColor,
int replacementColor) {
int width = image.getWidth();
int height = image.getHeight();
int target = targetColor;
int replacement = replacementColor;
if (target != replacement) {
Queue<Point> queue = new LinkedList<Point>();
do {
int x = node.x;
int y = node.y;
while (x > 0 && image.getPixel(x - 1, y) == target) {
x--;
}
boolean spanUp = false;
boolean spanDown = false;
while (x < width && image.getPixel(x, y) == target) {
image.setPixel(x, y, replacement);
if (!spanUp && y > 0 && image.getPixel(x, y - 1) == target) {
queue.add(new Point(x, y - 1));
spanUp = true;
} else if (spanUp && y > 0
&& image.getPixel(x, y - 1) != target) {
spanUp = false;
}
if (!spanDown && y < height - 1
&& image.getPixel(x, y + 1) == target) {
queue.add(new Point(x, y + 1));
spanDown = true;
} else if (spanDown && y < height - 1
&& image.getPixel(x, y + 1) != target) {
spanDown = false;
}
x++;
}
} while ((node = queue.poll()) != null);
}
}
}
我使用FloodFill的方法:
public void colorize()
{
bmp = ((BitmapDrawable)view.getDrawable()).getBitmap();
view.setOnTouchListener(new ImageView.OnTouchListener()
{
@Override
public boolean onTouch(View v, MotionEvent event)
{
int x = (int)event.getX();
int y = (int)event.getY();
...
flood.floodFill(bmp, new Point(x, y), bmp.getPixel(x, y), color);
view.setImageBitmap(bmp);
...
}
});
}
如果我尝试使用标准的android颜色f.g:Color.RED和Color.GREEN,一切正常。我可以用绿色替换f.g red,但如果我尝试使用这样的自定义颜色:f.g。 Color.rgb(34,198,67)我得到单点彩色而不是填充形状。
你能帮我找到解决这个问题的方法吗?
EDIT1:
我发现了一些有趣的东西。自定义颜色在某些像素上似乎是不同的值,但我不知道为什么我使用洪水填充。
答案 0 :(得分:0)
问题解决了。我使用floodfill的位图是RGB_565。我只是将其转换为ARGB_8888,一切正常。