我们如何在面板中添加位图图像,然后获取图像正在使用的图形,并告诉面板使用图像内部的相同图形绘制一条线。
问问题
185 次
1 回答
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());
}
您可能想阅读
于 2012-12-08T08:47:34.437 回答