セグメント化された画像で、次のような 2D ブール配列があります。
000000000000000000
000000011110000000
000001110111100000
000001111110100000
000000111101100000
000000111011000000
そして、写真をトリミングして、次のように特定のサイズにサイズ変更したい:
00111100
11101111
11111101
01111011
01110110
BufferedImage を使用して保存し、getSubimage() を使用しようとしましたが、境界を正しく取得できません...
また、バッファリングされた画像のコアがあるこの方法を試しました:
int Width = buffer.getWidth();
int Height = buffer.getHeight();
int x1= (int) (core.getX()) - (Width/2);
int y1= (int)(core.getY()) - (Height/2);
buffer = buffer.getSubimage(x1, y1, Width, Height);
トリミングしてサイズを変更するにはどうすればよいですか?