'JButton with pixelated 32x32 icon

I resized this png icon in GIMP its 32x32 pixels. The original was 4080x4080 pixels. But it appears pixelated when its place in JButton in my GUI. Do you have any tips how to fix it?

The code of the icon:

ImageIcon startIcon = new ImageIcon(
 "C:\\Users\\vikto\\Desktop\\ActivityMonitor\\ActivityMonitor\\images\\start.png");
            startIcon.getImage().getScaledInstance(32, 32, Image.SCALE_SMOOTH);

This is the picture:

https://i.stack.imgur.com/x2VyZ.png



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source