JPanel绘图

来源:互联网 发布:sql replace 正则 编辑:程序博客网 时间:2024/05/01 23:41
class NewPanel extends JPanel   {     public NewPanel(){}      public void paintComponent(Graphics g)      {          int p_width = 0;       int p_height = 0;       String imgURL= MakeFrame.filepath;//文件路径  System.out.println(imgURL);       ImageIcon icon = new ImageIcon(imgURL);      p_width = icon.getIconWidth();        p_height = icon.getIconHeight();        g.drawImage(icon.getImage(),20,20,p_width,p_height,null);   g.dispose();        }     }
0 0