In the overridden function for my JFrame:
@Override
protected void paintComponent(Graphics g) {
BufferedImage imagePerson;
try {
imagePerson = ImageIO.read(new File("errol.gif"));
} catch (IOException e) {
imagePerson = null;
}
g.drawImage(imagePerson, i * increment, j * increment - 1, null);
}
How can I change this so the animation on the gif is shown (without using threading). I have spent many hours trying to get this to work but to no avail.
paintComponentis called. That method is a called a lot. Load them once at initialization and store them in an instance variable of your class. – Mark Peters Dec 2 '10 at 22:01