List of utility methods to do ImageIcon Merge
ImageIcon | mergeIcons(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); ... |