Image Icon displays file name text

Please support our Java advertiser: Programming Forums - DaniWeb Sister Site
Reply

Join Date: Nov 2007
Posts: 28
Reputation: Cleo123 is an unknown quantity at this point 
Solved Threads: 0
Cleo123 Cleo123 is offline Offline
Light Poster

Image Icon displays file name text

 
0
  #1
Mar 20th, 2008
Hi, I've followed the example in my lecture notes and it doesn't work! I want to add an image to a label and then add that label to my sub north panel. I want to do this with creating a new class...I'm not sure if I need an "image loader" or to repaint it from the paint method...This code seemed to work for my lecturer:

  1.  
  2. logo = new ImageIcon("JavaProgram2/LogoGIF.GIF");
  3. logoLabel = new JLabel(" " + logo);
  4. logoLabel.setOpaque(true);
  5. logoLabel.setBackground(Color.white);
  6. row2.add(logoLabel); //row2 is the name of the panel

The label and logo is initialised at the beginning of my application with the Jlabel and ImageIcon var type, I have imported it, tried it without the file path with solely the file name and have tried different file types. I did look at previous posts about this but the code seemed a bit lengthly considering that I simply want to add an image.

Anyone got any ideas on how I could do this easily?
Reply With Quote Quick reply to this message  
Join Date: Aug 2007
Posts: 795
Reputation: darkagn has a spectacular aura about darkagn has a spectacular aura about darkagn has a spectacular aura about 
Solved Threads: 110
darkagn's Avatar
darkagn darkagn is offline Offline
Master Poster

Re: Image Icon displays file name text

 
0
  #2
Mar 21st, 2008
The only thing I can think of looking at this code is: do you have an image file called LogoGIF.GIF in a subdirectory called JavaProgram2? Also, you have added the logoLabel to the panel, but you haven't provided the code where you add the logo to the panel or the panel to the rest of your GUI. Are you doing that?
There are no stupid questions, only those too stupid to ask for help.
echo is a web developer's best friend.
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 28
Reputation: Cleo123 is an unknown quantity at this point 
Solved Threads: 0
Cleo123 Cleo123 is offline Offline
Light Poster

Re: Image Icon displays file name text

 
0
  #3
Mar 21st, 2008
lol yes I have the right name, I've looked at for a long time and row2 is a panel:

row1 = new JPanel();
row2 = new JPanel();

pNorth.add(row1, BorderLayout.NORTH);
pNorth.add(row2, BorderLayout.SOUTH);

row1.setBackground(Color.white);
row2.setBackground(Color.white);

I don't know, I've tried to resize it to a smaller size now and still doesn't work. I run out of ideas I know the panel works because it's added other buttons...
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC