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");
jarファイルからアニメーションgifを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();
}
}
}