List of utility methods to do ImageIcon Load
ImageIcon | loadResourceImageIcon(String imageName) load Resource Image Icon URL url = Main.class.getResource("resources/images/" + imageName); return new ImageIcon(url); |
ImageIcon | readImageIconFromFile(File srcFile) Read the image from the given file to an icon image. try { return new ImageIcon(ImageIO.read(srcFile)); } catch (Exception e) { return null; |