有没有办法在JLabel
中像JPEG或PNG图像一样显示动画GIF图像?我想从URL加载动画GIF,以便在标签中显示它。
如果我尝试使用常见的静态图像方法,我只会收到GIF的第一帧......
url = new URL("http://example.gif");
image = ImageIO.read(url);
ImageIcon icon = new ImageIcon(image);
picture = new JLabel();
picture.setIcon(icon);
答案 0 :(得分:5)
改为使用:
ImageIcon icon = new ImageIcon(url);
另请参阅Show an animated BG in Swing了解更改的原因。
简而言之,使用ImageIO
加载动画GIF将创建一个静态GIF(由动画的第一帧组成)。但是如果我们将URL
传递给ImageIcon
,它将正确加载动画的所有帧然后运行它们。
所以改变这个:
url = new URL("http://example.gif");
image = ImageIO.read(url);
ImageIcon icon = new ImageIcon(image);
picture = new JLabel();
picture.setIcon(icon);
对此:
url = new URL("http://example.gif");
ImageIcon icon = new ImageIcon(url); // load image direct from URL
picture = new JLabel(icon); // pass icon to constructor
甚至这个:
url = new URL("http://example.gif");
picture = new JLabel(new ImageIcon(url)); // don't need a reference to the icon