From: David ‘Bombe’ Roden Date: Sun, 25 May 2008 13:39:09 +0000 (+0200) Subject: add method to load images X-Git-Url: https://git.pterodactylus.net/?p=jSite2.git;a=commitdiff_plain;h=00111da0953c709bc067219fe5a482c5e2468c27 add method to load images --- 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(); + } + }