Here you can find the source of scaleImageIconTo(ImageIcon source, int height, int width)
public static ImageIcon scaleImageIconTo(ImageIcon source, int height, int width)
//package com.java2s; //License from project: Apache License import java.awt.Image; import javax.swing.ImageIcon; public class Main { public static ImageIcon scaleImageIconTo(ImageIcon source, int height, int width) { return new ImageIcon(source.getImage().getScaledInstance(width, height, Image.SCALE_SMOOTH)); }//from www . j a v a 2 s .c o m }