如何在Java中插入动画gif图像?
我已经看过不同的答案和问题。但是当我编写代码时,它并没有显示动画的gif。
Image image = Toolkit.getDefaultToolkit().getImage("yourFile.gif");
Image image=ImageIO.read(new File("yourFile.gif"));
最后,我使用方法drawImage
。
答案 0 :(得分:4)
你可以简单地使用JLabel(从here偷来的,如果这是你需要的话,请给予他信任。)
public static void main(String[] args) throws MalformedURLException {
URL url = new URL("<URL to your Animated GIF>");
Icon icon = new ImageIcon(url);
JLabel label = new JLabel(icon);
JFrame f = new JFrame("Animation");
f.getContentPane().add(label);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.pack();
f.setLocationRelativeTo(null);
f.setVisible(true);
}