java swing background image(java swing背景图片)
问题描述
我正在使用 JFrame,并且在我的框架上保留了背景图像.现在的问题是图像的大小小于框架的大小,所以我必须在窗口的空白部分再次保留相同的图像.如果用户单击最大化按钮,我可能不得不在运行时将图像放在框架的空白区域.谁能告诉我如何做到这一点?
I am using JFrame and I have kept a background image on my frame. Now the problem is that the size of image is smaller then the size of the frame so i have to keep the same image once again on the empty part of the window. If user clicks maximize button than I may have to put the image on empty region of the frame at run time. Can anyone tell me how to accomplish this?
推荐答案
在多次使用背景图片而不是调整大小或仅居中显示时,您想要类似于 windows 桌面的背景图片?
You want something like the background image of the windows desktop, when using the background image multiple times instead of resizing it or just display it centered?
你只需要保存一次图像,然后在paintComponent方法中多次绘制.
You only have to keep the image once and just paint it multiple times in the paintComponent method.
这篇关于java swing背景图片的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:java swing背景图片
基础教程推荐
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 降序排序:Java Map 2022-01-01