gpt4 book ai didi

java - 设计时显示图像

转载 作者:行者123 更新时间:2023-12-01 15:42:56 25 4
gpt4 key购买 nike

我创建了一个组件来在 jPanel 中显示图像。但它在设计时不显示图像。如何在设计时显示图像?

public class JImagePanel extends JPanel {
private BufferedImage _img=null;

public JImagePanel() {
super();
}

public void setImage(URL img) {
try{
this._img = ImageIO.read(img);
validate();
repaint();
}catch(Exception err){

}

}

@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
if(this._img!=null)
g.drawImage(_img, 0, 0, getWidth(), getHeight(), this);
}
}

最佳答案

如果你想显示 Icon/ImageIcon只是,那么更好的是寻找 JLabel使用paintComponent(Graphics g)作为绘画背景

关于java - 设计时显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7722485/

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