Java Utililty Methods ImageIcon Stretch

List of utility methods to do ImageIcon Stretch

Description

The list of methods to do ImageIcon Stretch are organized into topic(s).

Method

ImageIcongetStretchedImageIcon(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;