I put an imageIcon on JButton but it is just half of button. So, how can I make icon to be over whole JButton. Here is my code:
public static ImageIcon image;
...
try{
BufferedImage img = null;
img = ImageIO.read(new File("image.jpg"));
//Image img1 = img.getScaledInstance(jButton.getWidth(), jButton.getHeight(), Image.SCALE_SMOOTH);
Image img1 = img.getScaledInstance(40, 30, Image.SCALE_SMOOTH);
image= new ImageIcon(img1);
}
catch(Exception ex){
ex.printStackTrace();
}
jButton.setIcon(image);