Im trying to draw an image using JLabel.
heres my code
Code :private JLabel title = new JLabel(new ImageIcon("banner.png"));
I am calling it later on
Code :funcpanel.add(title);
But the image is never drawn. I have it in the proper directory why is it not drawing?
