1 2 3 4 |
cardIcon = new ImageIcon("images/acespades.png"); cardIconLabel = new JLabel("Your card", cardIcon, JLabel.CENTER); // Image is there, resource is loaded, but no image appears on screen |
1 2 3 4 |
cardIcon = new ImageIcon("images/acespades.png"); cardIconLabel = new JLabel("Your card", cardIcon, JLabel.CENTER); // Image is there, resource is loaded, but no image appears on screen |