Here you can find the source of scaleImageIcon(ImageIcon icon, int w, int h)
public static ImageIcon scaleImageIcon(ImageIcon icon, int w, int h)
//package com.java2s; //License from project: Open Source License import javax.swing.*; import java.awt.*; public class Main { public static ImageIcon scaleImageIcon(ImageIcon icon, int w, int h) { Image img = icon.getImage(); return new ImageIcon(img.getScaledInstance(w, h, Image.SCALE_SMOOTH)); }//from www. j a v a2 s.c o m }