Having images as background of JPanel(将图像作为 JPanel 的背景)
问题描述
我是 Java 新手,目前正在创建一个带有图形的游戏.我有这个类从 JFrame
扩展而来.在这个类中,我有许多需要图像作为背景的 JPanel
.据我所知,为了能够在 JPanel 中绘制图像,我需要有一个从 JPanel 扩展而来的单独类,并且该类的 paintComponent
方法将完成这项工作.但是我不想为每个 JPanel
单独的类,我有太多的类;而且我只关心背景.我怎样才能做到这一点?是匿名内部类吗?怎么样?
I am new in Java and I am currently creating a game with graphics. I have this class that extends from JFrame
. In this class, I have many JPanel
s that needs an image as background. As I know, to be able to paint images in the JPanel, I need to have a separate class that extends from JPanel and that class's paintComponent
method will do the work. But I don't want to make separate classes for each JPanel
, I have too many of them; and with the fact that I am only concerned with the background. How can I do this? is it with an anonymous inner class? How?
为了更好地理解,我提供了一些代码:
For better understanding I provided some code:
public GUI extends JFrame {
private JPanel x;
...
public GUI() {
x = new JPanel();
// put an image background to x
}
推荐答案
为什么不创建一个接受 Image
的单个类??
Why not make a single class that takes a Image
??
public class ImagePane extends JPanel {
private Image image;
public ImagePane(Image image) {
this.image = image;
}
@Override
public Dimension getPreferredSize() {
return image == null ? new Dimension(0, 0) : new Dimension(image.getWidth(this), image.getHeight(this));
}
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2d = (Graphics2D) g.create();
g2d.drawImage(image, 0, 0, this);
g2d.dispose();
}
}
你甚至会提供关于应该在哪里绘制的提示.
You would even provide hints about where it should be painted.
这样,您可以在需要时简单地创建一个实例
This way, you could simply create an instance when ever you needed it
更新
另一个问题是,为什么?
The other question is, why?
您可以只使用 JLabel
来为您绘制图标,而无需任何额外工作...
You could just use a JLabel
which will paint the icon for you without any additional work...
有关详细信息,请参阅 如何使用标签..
See How to use labels for more details...
这实际上是一个坏主意,因为 JLabel
在计算其首选尺寸时不使用它的子组件,它仅在确定其首选尺寸时使用图像的大小和文本属性,这个可能导致组件尺寸不正确
This is actually a bad idea, as JLabel
does NOT use it's child components when calculating it's preferred size, it only uses the size of the image and the text properties when determining it's preferred size, this can result in the component been sized incorrectly
这篇关于将图像作为 JPanel 的背景的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将图像作为 JPanel 的背景
基础教程推荐
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01