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);