Here you can find the source of getChatIconImage()
public static Image getChatIconImage()
//package com.java2s; import java.awt.Image; import javax.swing.ImageIcon; public class Main { public static Image getChatIconImage() { Image image = new ImageIcon( Thread.currentThread().getContextClassLoader().getResource("images/logo-24.png")).getImage(); return image; }/*from w w w . ja v a2s .com*/ public static Image getChatIconImage(int width, int height) { return getChatIconImage().getScaledInstance(width, height, Image.SCALE_AREA_AVERAGING); } }