0
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);
}
}
Gifファイルの速度を変更するにはどうすればよいですか? JFrameフレームの速度を変更する方法を見つけようとしましたが、何も見つかりませんでした。GIFファイルの速度を変更する方法
ルック:
が新しいGIFを作成します。現在の速度を検出すること
ためImageMagickを使用しますof-animated-gif-in-java – Tunaki