From 00111da0953c709bc067219fe5a482c5e2468c27 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Sun, 25 May 2008 15:39:09 +0200 Subject: [PATCH] add method to load images --- src/net/pterodactylus/util/image/IconLoader.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/net/pterodactylus/util/image/IconLoader.java b/src/net/pterodactylus/util/image/IconLoader.java index 2804d08..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; @@ -57,4 +58,19 @@ public class IconLoader { 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(); + } + } -- 2.7.4