JLabel
Label as Image

In Design mode, simply place a JLabel on the form, and select the label's icon property and choose an image file to display.

Programmatically:

BufferedImage myPicture = ImageIO.read(new File("path-to-file"));
JLabel picLabel = new JLabel(new ImageIcon(myPicture));
add(picLabel);