public class Main {
public static void main(String[] args) throws MalformedURLException {
URL url= new URL("<file path>");
Icon icon= new ImageIcon(url);
JLabel label= new JLabel(icon);
JFrame mainFrame = new JFrame("Test");
mainFrame.getContentPane().add(label);
mainFrame.setSize(800, 600);
mainFrame.setVisible(true);
mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
mainFrame.setResizable(false);
}
}
how can i change the speed of Gif file ? i tried to find how to change the speed of JFrame frame but i didn't find anything