Get an image object from the mode folder. Or when prefixed with /lib, load it from the main /lib folder.
(String filename)
| 751 | * Or when prefixed with /lib, load it from the main /lib folder. |
| 752 | */ |
| 753 | public Image loadImage(String filename) { |
| 754 | ImageIcon icon = loadIcon(filename); |
| 755 | if (icon != null) { |
| 756 | return icon.getImage(); |
| 757 | } |
| 758 | return null; |
| 759 | } |
| 760 | |
| 761 | |
| 762 | public Image loadImageX(String filename) { |
no test coverage detected