5

这个特定的 GIF 动画播放速度太快,就像正常速度的 100 倍。有什么解决办法吗?还是我应该进一步减慢“GIF的正常速度”?

public class Test {

    private static final String url = "http://i.stack.imgur.com/AnrWw.gif";

    private void display() throws MalformedURLException {
        JFrame f = new JFrame("Test");
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.add(new JLabel(new ImageIcon(new URL(url))));
        f.pack();
        f.setLocationRelativeTo(null);
        f.setVisible(true);
    }

    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    new Test().display();
                } catch (MalformedURLException ex) {
                    ex.printStackTrace(System.err);
                }
            }
        });
    }
}
4

1 回答 1

0

我尝试使用其他效果很好的动画 gif 图像,问题可能是您的 gif 图像,尝试降低 gif 的帧速率或降低质量。

于 2013-05-08T11:39:10.490 回答