1 2 3 4 5 6 7 8
|
ImageIcon imageIcon = new ImageIcon("C:\\Documents and Settings\\roxor972\\Bureau\\15358000.jpeg");
ImageIcon imageResized = new ImageIcon(imageIcon.getImage().getScaledInstance((int)this.viewWidth,(int) this.viewHeight, Image.SCALE_SMOOTH));
ScrollablePicture picture = new ScrollablePicture(imageResized, 10);
JScrollPane pictureScrollPane = new JScrollPane(picture);
pictureScrollPane.setPreferredSize(new Dimension(420, 550));
pictureScrollPane.setVisible(true);
this.getContentPane().add(pictureScrollPane); |
Partager