以下のコードでは、2dim配列をバッファリングされた画像に変換します(これは機能し、画像はバイナリ(バックとホワイト)です)。次に、この画像を表示します。
私の質問は、この画像をどのように更新できるかです(ここに表示されていないループの実行ごとに何かを描画したいため)。
これはまた私の2番目の質問に私をもたらします:どうすればこの画像に点を描くことができますか。(これは、150,100に点を描画する場合、画像のピクセル150,100にある必要があることも意味します)。
public void showImage(int xPoint, int yPoint) throws IOException {
// Two dim array conversion to a bufferedImage
BufferedImage bimg = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
for (int y = 0; y < width; y++) {
for (int x = 0; x < height; x++) {
tempValue = (pixelArray[y][x]==1) ? 255 : 0;
int value = tempValue << 16 | tempValue << 8 | tempValue;
bimg.setRGB(x, y, value);
}
}
JFrame canvas = new JFrame();
canvas.setSize(bimg.getWidth(), bimg.getHeight());
canvas.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
canvas.setTitle("Contour");
Container pane = canvas.getContentPane();
ColorPanel panel = new ColorPanel(bimg,xPoint,yPoint);
pane.add(panel);
canvas.setVisible(true);
}
と
class ColorPanel extends JPanel {
BufferedImage bimg;
int x;
int y;
public ColorPanel(BufferedImage image,int _x, int _y) {
bimg = image;
x = _x;
y = _y;
}
public void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2d = (Graphics2D) g;
g2d.drawImage(bimg, null, 0, 0);
}
}
私が試したのは:
g2d.setColor(Color.RED);
g2d.drawLine(x, y, x, y);
実行するたびに新しいウィンドウが開き、ポイントが正しいとは思わないが