JPanel panel = new JPanel();
JLabel lbl = new JLabel(new ImageIcon("Hello.jpg"));
panel.add(lbl);
JScrollPane pane = new JScrollPane(panel);
getContentPane().add(pane);
You can add your image to the label and add the label to the panel. Finally add your panel to the scrollpane.