我正在尝试创建一个图像,通过将像素从旧位置复制到新坐标来为 Java 上的现有图像添加边框。我的解决方案正在运行,但我想知道是否有更有效/更短的方法来做到这一点。
/** Create a new image by adding a border to a specified image.
*
* @param p
* @param borderWidth number of pixels in the border
* @param borderColor color of the border.
* @return
*/
public static NewPic border(NewPic p, int borderWidth, Pixel borderColor) {
int w = p.getWidth() + (2 * borderWidth); // new width
int h = p.getHeight() + (2 * borderWidth); // new height
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 || y >= (h - borderWidth))
tgt[x][y] = borderColor;
else
tgt[x][y] = src[x - borderWidth][y - borderWidth];
}
}
return new NewPic(tgt);
}