如何在 JPanel 中居中对齐背景图像
我想将背景图像添加到我的 JFrame
中。
背景图像意味着我可以稍后在 JFrame
或 JPanel
上添加组件
虽然我找不到如何向 JFrame
添加背景图像,
我从这里找到了如何将背景图像添加到 JPanel
:
如何在Java中设置背景图像?
这解决了我的问题,但是现在,由于我的 JFrame
可以调整大小,我想将图像保持在中心位置。
我找到的代码使用了这个方法
public void paintComponent(Graphics g) { //Draw the previously loaded image to Component.
g.drawImage(img, 0, 0, null); //Draw image
}
谁能说一下如何将图像对齐到 JPanel
的中心。
由于 g.drawImage(img, 0, 0, null);
提供 x=0 和 y=0
另外,如果有一种方法可以将背景图像添加到 JFrame
那么我想知道。
谢谢。
I wanted to add background image to my JFrame
.
Background image means I can later add Components on the JFrame
or JPanel
Although I coudn't find how to add background image to a JFrame
,
I found out how to add background image to a JPanel
from here:
How to set background image in Java?
This solved my problem, but now since my JFrame
is resizable I want to keep the image in center.
The code I found uses this method
public void paintComponent(Graphics g) { //Draw the previously loaded image to Component.
g.drawImage(img, 0, 0, null); //Draw image
}
Can anyone say how to align the image to center of the JPanel
.
As g.drawImage(img, 0, 0, null);
provides x=0 and y=0
Also if there is a method to add background image to a JFrame
then I would like to know.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设有一个合适的
图像
,您可以像这样将其居中:如果您希望其他组件随背景移动,您可以更改图形上下文的仿射变换以保持图像居中,如下所示包含旋转的完整示例。
Assuming a suitable
image
, you can center it like this:If you want the other components to move with the background, you can alter the graphics context's affine transform to keep the image centered, as shown in this more complete example that includes rotation.