Java Utililty Methods ImageIcon Merge

List of utility methods to do ImageIcon Merge

Description

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

Method

ImageIconmergeIcons(ImageIcon bottom, ImageIcon top)
Merge the two given icons in one, drawing bottom under top .
if (bottom == null) {
    return top;
if (top == null) {
    return bottom;
BufferedImage image = new BufferedImage(Math.max(bottom.getIconWidth(), top.getIconWidth()),
        Math.max(bottom.getIconHeight(), top.getIconHeight()), BufferedImage.TYPE_INT_ARGB);
...