我正在开发一个java应用程序,我需要解开框架并使用图像作为background.i使用此代码来执行此操作
com.sun.awt.AWTUtilities.setWindowOpaque(this, false)
但如果我用这个字母没有正确显示。 还有另一种方法吗?请帮我解决这个问题,
答案 0 :(得分:1)
你的问题是模糊的,但是,除非你使用Java 6,否则我会避免使用com.sun.awt.AWTUtilities.setWindowOpaque(this, false)
而是使用Java 7+中提供的新透明支持。有关详细信息,请参阅How to Create Translucent and Shaped Windows。
不要使用JLabel
作为内容的背景,它不会根据它的子组件计算它的首选大小,而只会根据icon
和text
属性。这意味着它可以小于正确布局它的子组件所需的空间。
相反,请使用自定义JPanel
并自行绘制图像。
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
public class Test {
public static void main(String[] args) {
new Test();
}
public Test() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
ex.printStackTrace();
}
JLabel label = new JLabel("Boo!");
label.setForeground(Color.WHITE);
label.setHorizontalAlignment(JLabel.CENTER);
label.setFont(label.getFont().deriveFont(Font.BOLD, 128f));
JFrame frame = new JFrame("Testing");
frame.setUndecorated(true);
frame.setBackground(new Color(0, 0, 0, 0));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setContentPane(new BackgroundPane());
frame.add(label);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
public class BackgroundPane extends JPanel {
private BufferedImage background;
public BackgroundPane() {
setLayout(new BorderLayout());
try {
background = ImageIO.read(new File("Some image"));
} catch (IOException ex) {
ex.printStackTrace();
}
}
@Override
public Dimension getPreferredSize() {
Dimension size = super.getPreferredSize();
if (background != null) {
size.width = Math.max(size.width, background.getWidth());
size.height = Math.max(size.height, background.getWidth());
}
return size;
}
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
if (background != null) {
Graphics2D g2d = (Graphics2D) g.create();
int x = (getWidth() - background.getWidth()) / 2;
int y = (getHeight() - background.getHeight()) / 2;
g2d.drawImage(background, x, y, this);
g2d.dispose();
}
}
}
}
有关详细信息,请参阅Reading/Loading an Image和Performing Custom Painting
答案 1 :(得分:0)
1.只需在JFram表单中添加标签即可。
2.在GUI Designer中,选择已添加到表单的标签。
3.在“属性”窗口中,单击“属性”类别,然后滚动到“图标”属性。
4.单击省略号(...)按钮。
5.然后点击外部图片。因此它将添加到您的项目中,这与netbeans iDE
有关如果您需要更多帮助,请通知我
答案 2 :(得分:0)
我们在这里有两种方法
除此之外:
在每次刷新paintComponent
时,覆盖JPanel
方法以绘制背景图片。
例如,可以将JPanel
子类化,并添加一个字段来保存背景图像,并覆盖paintComponent
方法:
public class JPanelBackground extends JPanel {
private Image backgroundImage;
// Here, we use the constructor to load the image.
public JPanelBackground(String fileName) throws IOException {
backgroundImage = ImageIO.read(new File(fileName));
}
public void paintComponent(Graphics g) {
super.paintComponent(g);
// Draw the background image.
g.drawImage(backgroundImage, 0, 0, this);
}
}
以下代码可用于将JPanelBackground
添加到JFrame
:
JFrame f = new JFrame();
f.getContentPane().add(new JPanelBackground("sample.jpeg"));
在此示例中,ImageIO.read(File)
(详细信息关于ImageIO [检查])(http://docs.oracle.com/javase/7/docs/api/javax/imageio/ImageIO.html)方法用于读取外部JPEG
文件。