ピクセルを古い場所から新しい座標にコピーすることにより、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);
}
これが私のテストケースに合格しない理由がわかりません。誰でも私にガイダンスを提供できますか?
ありがとう!