嗨,我不确定如何格式化我的动画gif图像,让它们显示在日食上创建的罐子里。
try {
//ImageIcon titleIcon = new ImageIcon(ImageIO.read(getClass().getResource("title.gif")));
title = new ImagePicture (new ImageIcon(ImageIO.read(getClass().getResource("title.gif"))), 0, 0);
//title = new ImagePicture (new ImageIcon("title.gif"), 0, 0);
}//end try
catch (IOException e) {
}//end catch
//set title bounds
title.setBounds(260, 0, 400, 100);
这是我现在的动画GIF代码,感谢您的输入。
答案 0 :(得分:0)
如果没有更多的上下文,很难给出一个很好的例子,但你可以尝试将ImageIcon添加到这样的JLabel中。
URL url = this.getClass().getResource("title.gif");
Icon title = new ImageIcon(url);
JLabel titleLbl = new JLabel(title);
//You have to add titleLbl to a container after this, of course