View Single Post
  #2 (permalink)  
Old 12-07-2007, 07:26 PM
hardwired hardwired is offline
Senior Member
 
Join Date: Jul 2007
Posts: 1,189
hardwired is on a distinguished road
Code:
String path = "path_to_image"; JPanel panel = new JPanel(new BorderLayout()); JLabel label = new JLabel(new ImageIcon(path)); label.setHorizontalAlignment(JLabel.CENTER); panel.add(label); // default center section
If you do not want the label to expand to fill the center section you can try
Code:
JPanel panel = new JPanel(new GridBagLayout()); panel.add(label, new GridBagConstraints());
Reply With Quote