List of utility methods to do ImageIcon Stretch
ImageIcon | getStretchedImageIcon(ImageIcon ii, int w, int h, boolean incr) get Stretched Image Icon if (ii != null) { ii = new ImageIcon(ii.getImage().getScaledInstance(w, h, Image.SCALE_DEFAULT)); return ii; |