hide background of jbutton button in java swing

https://‮ww‬w.lautturi.com
hide background of jbutton button in java swing
// Jbutton with icon image
JButton play = new JButton("This",new ImageIcon("src\start.png"));
        play.setContentAreaFilled(false); 
        play.setFocusPainted(false); 
        play.setBorderPainted(false); 
        play.setOpaque(false);
Created Time:2017-09-08 15:35:11  Author:lautturi