代码如下:

ImageIcon icon1 = new ImageIcon(curDir + "/img/folder.png");
Image img = icon1.getImage();
Image newimg = img.getScaledInstance(width,height,java.awt.Image.SCALE_SMOOTH); 
ImageIcon icon = new ImageIcon(newimg); 
JButton button = new JButton(icon);

 

相关文章:

  • 2022-12-23
  • 2021-12-28
  • 2021-06-26
  • 2021-12-01
  • 2022-12-23
  • 2021-10-02
  • 2022-01-17
猜你喜欢
  • 2021-12-30
  • 2021-12-07
  • 2022-12-23
  • 2021-12-21
  • 2022-12-23
  • 2021-08-30
  • 2022-12-23
相关资源
相似解决方案