【发布时间】:2015-09-13 02:55:52
【问题描述】:
有没有办法像 JPEG 或 PNG 图像一样在 JLabel 中显示动画 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);
【问题讨论】:
标签: java image swing jlabel gif