0

在 JFrame 中使用了 imageIcon 但在框架中我们可以使用什么来将图像添加到框架中?我们可以在 Frame 中的 awt 标签中附加图像吗?

4

2 回答 2

1

你可以试试这个。将 myImage.jpg 更改为您想要的图像。确保此图像与此源文件位于同一位置。

import java.awt.Frame;
import java.awt.Graphics;

import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.event.WindowListener;

import javax.swing.ImageIcon;

public class Test extends Frame {
    ImageIcon a;

    WindowListener wl = new WindowAdapter() {
        public void windowClosing(WindowEvent e) {
            System.exit(0);
        }
    };

    public Test() {
        a = new ImageIcon("myImage.jpg");
        setSize(a.getIconWidth(), a.getIconHeight());
        setLocationRelativeTo(null);
        addWindowListener(wl);
        setVisible(true);
    }

    public void paint(Graphics g) {
        super.paint(g);
        g.drawImage(a.getImage(), 0, 0, this);
    }

    public static void main(String[] args) {
        Test myTest = new Test();
    }
}

来源:http: //java2everyone.blogspot.com

于 2013-08-13T17:37:31.070 回答
0

只需在新的 JLabel 上设置一个 imagIcon 并将这个新的 JLabel 添加到框架中您想要的位置。

于 2013-08-13T17:39:34.960 回答