Swing里关于图片的处理类是哪个? 我现在想做的是在控件,例如Button, 和JPanel 上放置图片 或者背景图片
1个回答
展开全部
public class MyPanel extends JPanel {
public void paintComponent(Graphics g)
{
super.paintComponent(g);
ImageIcon icon = new ImageIcon("背景图片路径");
Image img = icon.getImage();
g.drawImage(img,0,0,this.getWidth(),this.getHeight(),null);
}
}
Button上放图片也使用ImageIcon就可以。
public void paintComponent(Graphics g)
{
super.paintComponent(g);
ImageIcon icon = new ImageIcon("背景图片路径");
Image img = icon.getImage();
g.drawImage(img,0,0,this.getWidth(),this.getHeight(),null);
}
}
Button上放图片也使用ImageIcon就可以。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询