Returns an Image, or null if the path was invalid.
(String path)
| 179 | |
| 180 | /** Returns an Image, or null if the path was invalid. */ |
| 181 | public static Image createImage(String path) { |
| 182 | return createImage(IJ.getClassLoader(), path); |
| 183 | } |
| 184 | |
| 185 | /** Returns an ImageIcon, or null if the path was invalid. */ |
| 186 | public static Image createImage(Class<?> ref, String path) { |
no test coverage detected