Skip to content

Instantly share code, notes, and snippets.

@kleinlennart
Created September 30, 2017 14:23
Show Gist options
  • Save kleinlennart/705b7c5be3998e3b5b02ee7cb0dd784a to your computer and use it in GitHub Desktop.
Save kleinlennart/705b7c5be3998e3b5b02ee7cb0dd784a to your computer and use it in GitHub Desktop.
Display Image from source folder in Label
JLabel label = new JLabel("");
Image img = new ImageIcon(this.getClass().getResource("/filename.jpg")).getImage();
label.setIcon(new ImageIcon(img));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment