有没有办法让jbutton中添加的图片根据当前jbutton的大小压缩或拉伸

有没有办法让jbutton中添加的图片根据当前jbutton的大小压缩或拉伸

问题描述:

我需要做一个全屏的界面 屏幕大的话 按钮也会按比例变大 现在就是想要在按钮里添加的图片也能的变小或拉伸来适应按钮大小的变化

有,图标大小自适应:
public void setIcon(String file,JButton com){
ImageIcon ico=new ImageIcon(file);
Image temp=ico.getImage().getScaledInstance(com.getWidth(),com.getHeight(),ico.getImage().SCALE_DEFAULT);
ico=new ImageIcon(temp);
com.setIcon(ico);
}