转载 Java中如何设置按钮背景图片大小
最近我在写一个Java项目,其中需要给按钮添加背景图片,这个倒是很简单,困难的是如何调整背景图片的大小,纠结了很久,终于在网上找到了一个解决方法,拿出来和大家分享一下
- public void setIcon(String file, JButton iconButton) {
- ImageIcon icon = new ImageIcon(file);
- Image temp = icon.getImage().getScaledInstance(iconButton.getWidth(),
- iconButton.getHeight(), icon.getImage().SCALE_DEFAULT);
- icon = new ImageIcon(temp);
- iconButton.setIcon(icon);
- }
其中,file是图片的路径,iconButton是按钮的变量名。封装成一个函数就是这样简单。
who:whaozl
QQ:1057674944
email:whaozl@163.com
blog:http://www.cnblogs.com/whaozl
note:原创博客请尊重版权,转载必须得到本人同意