X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Futil%2Fimage%2FIconLoader.java;h=d09443d301c05dc62057fcbbf620dbd73d58e051;hb=00111da0953c709bc067219fe5a482c5e2468c27;hp=2804d082826cc42cc263eb8c15ebe68e3d940e40;hpb=d08ac1cde5a4ca17bced211c6eb2ecd6a71a99f5;p=jSite2.git 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(); + } + }