加载动画GIF从JAR文件到的ImageIcon(Loading animated gif from

2019-07-20 01:35发布

我试图创建存储在一个jar文件中的gif动画一个的ImageIcon。

ImageIcon imageIcon = new ImageIcon(ImageIO.read(MyClass.class.getClassLoader().getResourceAsStream("animated.gif")));

加载图像,但只有动画GIF的第一帧。 动画不能播放。

如果我从一个文件中加载文件系统上的GIF动画,按预期工作的一切。 动画播放通过所有的帧。 所以这工作原理:

ImageIcon imageIcon = new ImageIcon("/path/on/filesystem/animated.gif");

我怎样才能加载GIF动画成JAR文件一个ImageIcon?

编辑:这是一个完整的测试用例,为什么不这样显示的动画?

import javax.imageio.ImageIO;
import javax.swing.*;

public class AnimationTest extends JFrame {

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                AnimationTest test = new AnimationTest();
                test.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                test.setVisible(true);
            }
        });
    }

    public AnimationTest() {
        super();
        try {
            JLabel label = new JLabel();
            ImageIcon imageIcon = new ImageIcon(ImageIO.read(AnimationTest.class.getClassLoader().getResourceAsStream("animated.gif")));
            label.setIcon(imageIcon);
            imageIcon.setImageObserver(label);
            add(label);
            pack();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

Answer 1:

这读取的inputStream GIF动画

InputStream in = ...;
Image image = Toolkit.getDefaultToolkit().createImage(org.apache.commons.io.IOUtils.toByteArray(in));


Answer 2:

你必须使用的getClass()的getResource(imgName)。 得到一个URL到图像文件。 看看本教程由皇马的HOWTO。

编辑:一旦加载图像,你必须设置的ImageObserver属性来获取动画运行。



Answer 3:

由于该线程是刚刚从一个较新的线程有一点做与GIF动画,但得到拖OT联系,我想我会添加这个平凡的来源,“对我的作品”。

import javax.swing.*;
import java.net.URL;

class AnimatedGifInLabel {

    public static void main(String[] args) throws Exception {
        final URL url = new URL("http://i.stack.imgur.com/OtTIY.gif");
        Runnable r = new Runnable() {
            public void run() {
                ImageIcon ii = new ImageIcon(url);
                JLabel label = new JLabel(ii);
                JOptionPane.showMessageDialog(null, label);
            }
        };
        SwingUtilities.invokeLater(r);
    }
}


Answer 4:

但愿这不是太晚了这一点。

我设法让我的JPanel这样里面的动画GIF:

private JPanel loadingPanel() {
    JPanel panel = new JPanel();
    BoxLayout layoutMgr = new BoxLayout(panel, BoxLayout.PAGE_AXIS);
    panel.setLayout(layoutMgr);

    ClassLoader cldr = this.getClass().getClassLoader();
    java.net.URL imageURL   = cldr.getResource("img/spinner.gif");
    ImageIcon imageIcon = new ImageIcon(imageURL);
    JLabel iconLabel = new JLabel();
    iconLabel.setIcon(imageIcon);
    imageIcon.setImageObserver(iconLabel);

    JLabel label = new JLabel("Loading...");
    panel.add(iconLabel);
    panel.add(label);
    return panel;
}

这种方法的几点:
1.图像文件是罐子内;
2. ImageIO.read()返回一个BufferedImage,其不更新的ImageObserver;
3.找到在jar文件捆绑的图像另一种方法是让Java类加载器,即加载的程序代码,您需要的档案。 它知道那里的东西。

因此,通过这样做,我能得到我的JPanel在我的gif动画和它的工作就像一个魅力。



文章来源: Loading animated gif from JAR file into ImageIcon