How to read an image file from the JAR
To read an image file from the JAR to an Image object, you should use this code:
try {
Image logo = Image.createImage("/path_to_the_image");
}
catch (java.io.IOException e) {
System.err.println("Image read error");
}
Remember:

