0

我正在尝试创建一个图像,通过将像素从旧位置复制到新坐标来为 Java 上的现有图像添加边框。到目前为止,这就是我所做的:

 public static NewPic border(NewPic p, int borderWidth, Pixel borderColor) {
    int w = 2 * borderWidth;
    int h = 2 * borderWidth;


    Pixel[][] src = p.getBitmap();
    Pixel[][] tgt = new Pixel[w][h];

    for (int x = 0; x < w; x++) {
        for (int y = 0; y < h; y++) {
            if (x < borderWidth || x >= (w - borderWidth) ||
                    y < borderWidth)
                tgt[x][y] = borderColor;
            else
                tgt[x][y] = src[x - borderWidth][y - borderWidth]; 

        }
    }

return new NewPic(tgt);    

}

不知道为什么这没有通过我的测试用例。任何人都可以为我提供任何指导吗?

谢谢!

4

2 回答 2

2

w 和 h 不应该是 src 的宽度和高度加上边框宽度的两倍吗?您正在创建足够大的 tgt 以容纳边框颜色。

希望有帮助。

于 2013-03-12T03:35:30.920 回答
0

您可以使用图形和画线。

于 2013-03-12T03:34:08.530 回答