如何在面板中添加位图图像,然后获取图像正在使用的图形,并告诉面板使用图像内的相同图形绘制线条。
答案 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());
}
您可能希望阅读