So I am trying to make a simple graphical interface for a game, So I made a sprite sheet to go along with it. But in my class <SpriteSheet.java> I am coming accross this error:
Exception in thread "main" java.lang.IllegalArgumentException: input == null!
at javax.imageio.ImageIO.read(Unknown Source)
at matrix.game.gfx.SpriteSheet.<init>(SpriteSheet.java:18)
Here is <SpriteSheet.java>
package matrix.game.gfx;
import java.awt.image.BufferedImage;
import java.io.IOException;
import javax.imageio.ImageIO;
public class SpriteSheet {
public String path;
public int width;
public int height;
public int[] pixels;
public SpriteSheet(String path) {
BufferedImage image = null;
try {
image = ImageIO.read(SpriteSheet.class.getResourceAsStream(path));
} catch (IOException e) {
e.printStackTrace();
}
if(image == null) {
return;
}
this.path = path;
this.width = image.getWidth();
this.height = image.getHeight();
pixels = image.getRGB(0,0, width, height, null, 0, width);
for (int i = 0; i < pixels.length; i++) {
pixels[i] = (pixels[i] & 0xff)/64;
}
for (int i = 0; i < 8; i++) {
System.out.println(pixels[i]);
}
}
}