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.

link|improve this question

36% accept rate
1  
Regardless of which solution you pursue, you probably don't want to actually be loading images each time paintComponent is 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
feedback

1 Answer

You could use an ImageIcon for this purpose. Have a look here and here. If you need the animation on a JPanel, simply add a JLabel (with the ImageIcon) to the panel.

link|improve this answer
The thing is I want to move the position of the animated gif around the jpanel with positions worked out in :protected void paintComponent(Graphics g) { – Yawn Dec 2 '10 at 19:52
and I can't see a way of adding a jlabel to the jpanel in that function – Yawn Dec 2 '10 at 19:53
Either you move your ImageIcon around, or you set up a Timer that calls repaint repeatedly, and figure out where and which frame to draw in your paintComponent method. – aioobe Dec 2 '10 at 20:01
1  
Add the label to the panel. Then to move the label you simply invoke setLocation(). There is no need to override the paintComponent() method or call repaint(). – camickr Dec 2 '10 at 21:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.