ImageIcon imageBack = new ImageIcon(your_image_Path_here);
JLabel background = new JLabel(imageBack);
background.setBounds(0, 0, imageBack.getIconWidth(), imageBack.getIconHeight());
getLayeredPane().add(background, new Integer(Integer.MIN_VALUE));
jPanel1.setOpaque(false);
setContentPane(jPanel1);