我打算用Java创建游戏。所以我必须在源代码中显示webp动画。
我尝试了以下代码:
import javax.swing.JFrame;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
class Game {
public static void main(String args[]) {
JFrame frame = new JFrame();
ImageIcon icon = new ImageIcon("something.webp");
JLabel label = new JLabel(icon);
frame.add(label);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setVisible(true);
}
}
它只能显示jpeg等文件。但是我想显示webp动画。