Java Swing JLabel set icon size

www.la‮.iruttu‬com
Java Swing JLabel set icon size
ImageIcon printicon = new ImageIcon("./img/printicon.png"); // load the image to a imageIcon
Image image = printicon.getImage(); // transform it 
Image newimg = image.getScaledInstance(120, 120,  java.awt.Image.SCALE_SMOOTH); // scale it the smooth way  
printicon = new ImageIcon(newimg); 

myLabel.setIcon(printIcon);
myLabel.setIconTextGap(10);
Created Time:2017-10-02 17:40:40  Author:lautturi