X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Futil%2Fimage%2FIconLoader.java;h=d09443d301c05dc62057fcbbf620dbd73d58e051;hb=55be4a9e8373d72a9e1c25a3c8150651bb19679d;hp=9dda78d1a4426bc06088f54c2c440b681a5586f8;hpb=638d5bde1d13100ea3388ed0b872227d94e60658;p=jSite2.git diff --git a/src/net/pterodactylus/util/image/IconLoader.java b/src/net/pterodactylus/util/image/IconLoader.java index 9dda78d..d09443d 100644 --- a/src/net/pterodactylus/util/image/IconLoader.java +++ b/src/net/pterodactylus/util/image/IconLoader.java @@ -16,6 +16,7 @@ package net.pterodactylus.util.image; +import java.awt.Image; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; @@ -27,7 +28,6 @@ import javax.swing.ImageIcon; * Loads an {@link Icon} from the class path. * * @author David Roden - * @version $Id$ */ public class IconLoader { @@ -53,8 +53,24 @@ public class IconLoader { imageOutput.flush(); return new ImageIcon(imageOutput.toByteArray()); } catch (IOException e) { + /* ignore. */ } return null; } + /** + * Loads an image from the class path. + * + * @param resourceName + * The name of the image + * @return The image, or null if no image was found + */ + public static Image loadImage(String resourceName) { + ImageIcon imageIcon = (ImageIcon) loadIcon(resourceName); + if (imageIcon == null) { + return null; + } + return imageIcon.getImage(); + } + }