gpt4 book ai didi

java - Jframe 中的图像

转载 作者:行者123 更新时间:2023-12-01 13:55:47 24 4
gpt4 key购买 nike

我使用的是 netbeans IDE 7.4。我在新项目中创建了一个新的 Java swing jframe.java 。我创建了一个类。但该图像既不显示在设计 View 中,也不显示编译后。图像位于同一目录。我们如何在具有设计 View 的java swing jframe中显示图像。我的代码如下。实际上我写了两个类,一个是内置的 jframe 类,它是设计 View 的默认值。创建了一个名为图像的图像,用于为图像创建 jpanel 现在我想将 jpanel 显示到 jframe 内置类中。

  package javaapplication18;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Image;
import javax.swing.ImageIcon;
import static javax.swing.JFrame.EXIT_ON_CLOSE;
import javax.swing.JPanel;
/**
*
* @author Dell
*/
public class Images extends JPanel{



private static Image img;


public Images(Image a) {
img = a;
Dimension size = new Dimension(img.getWidth(null), img.getHeight(null));
setPreferredSize(size);
setMinimumSize(size);
setMaximumSize(size);
setSize(size);
setLayout(null);
}

@Override
public void paintComponent(Graphics g) {
g.drawImage(img, 0, 0, null);
}

}

//Now in the main class when i o to source view from design view and

static Images panel = new Images(new ImageIcon("helloo.png").getImage());

public static void main(String args[]) {




/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
MainForm hh = new MainForm();
hh.setVisible(true);
hh.panel.setVisible(true);

hh.add(panel);

hh.setSize(500,500);


}
});
}

最佳答案

只需将 JLabel 添加到您的 JFrame 并添加您的图像即可!

关于java - Jframe 中的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19639354/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com