Guest User

Untitled

a guest
Jun 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. ImageIcon imageIcon = new ImageIcon("images\5-5.png");
  2. Image image = imageIcon.getImage();
  3. Image newimg = image.getScaledInstance(60, 120,java.awt.Image.SCALE_SMOOTH);
  4. imageIcon = new ImageIcon(newimg);
  5.  
  6. JLabel img = new JLabel(imageIcon);
  7. img.setBounds(100, 100, 60, 120);
  8. getContentPane().add(img);
Add Comment
Please, Sign In to add comment