不使用摆动将图像添加到面板

时间:2012-12-08 05:49:34

标签: java image awt bufferedimage java-2d

如何在面板中添加位图图像,然后获取图像正在使用的图形,并告诉面板使用图像内的相同图形绘制线条。

1 个答案:

答案 0 :(得分:2)

基本绘画由Swing组件paintComponent方法完成。

您最好的选择是使用ImageIO API ...

加载图片
BufferedImage image;

public void loadImage() throws IOException {
    image = ImageIO.read(...);
    // ImageIO can read a image from a file or a URL or a ImageInputStream
}

然后简单地绘制图像......

protected void paintComponent(Graphics g) {
    super.paintComponent(g);
    g.drawImage(image, 0, 0, this);
    // Now you can continue drawing ontop of it...
    g.setColor(Color.RED);
    g.drawLine(0, 0, image.getWidth(), image.getHeight());
}

您可能希望阅读