/**
* @see org.newdawn.slick.BasicGame#init(org.newdawn.slick.GameContainer)
*/
public void init(GameContainer container) throws SlickException {
image = tga = new Image("testdata/logo.png");
rotImage = new Image("testdata/logo.png");
rotImage = rotImage.getScaledCopy(rotImage.getWidth() / 2, rotImage.getHeight() / 2);
//rotImage.setCenterOfRotation(0,0);
scaleMe = new Image("testdata/logo.tga", true, Image.FILTER_NEAREST);
gif = new Image("testdata/logo.gif");
scaled = gif.getScaledCopy(120, 120);
subImage = image.getSubImage(200,0,70,260);
rot = 0;
if (exitMe) {
container.exit();
}
Image test = tga.getSubImage(50,50,50,50);
System.out.println(test.getColor(50, 50));
}