Hello, all!
I use this code to load an icon to a JFrame:
Image icone =
new ImageIcon(getClass().getResource("/icone.gif")).getImage();
setIconImage(icone);
But why the image that is displayed is smaller than the real image? The icons that I made are 16x16 pixels, but I see that the JFrame shows them like 14x14 pixels or less. How do I make the JFrame display the icons in their real size?
Thank you.
Marcos