Posted By:
Christopher_Brind
Posted On:
Thursday, July 26, 2001 07:22 PM
Assuming you already have your image...
ImageIcon icon = new ImageIcon(image);
JLabel label = new JLabel(icon);
container.add(new JScrollPane(label));
If your container is smaller than the image then the scroll bars should appear.