I am adding icons to the tabs, but I want the ImageIcon to match all tabComponent.

I tried this code
ImageIcon icon = new ImageIcon("images/itemtexto-off.png"); Image img = icon.getImage() ; Image newimg = img.getScaledInstance( 50, 25, java.awt.Image.SCALE_DEFAULT ) ; icon = new ImageIcon( newimg ); tabbedPaneProductDetail.setIconAt(0, icon);
Also I tried this as a solution, but did not work.
JLabel label = new JLabel(icon); label.setBackground(Color.BLUE); tabbedPaneProductDetail.setTabComponentAt(1,label);
java swing nimbus jtabbedpane
nachokk
source share