LoginSignup
8
8

More than 5 years have passed since last update.

ImageMagickでアニメーションgifを扱う

Last updated at Posted at 2014-01-10

よく忘れるのでメモ。

最適化されたアニメーションgif画像を連番pngへ変換

~$ convert -coalesce hoge.gif %02d.png

pngファイルを最適化しながら8コマ単位でgifアニメ画像に結合する

~$ convert -layers optimize -delay 8 *.png hoge.gif

結合するpngファイルの順番を指定したい場合

~$ convert -delay 5 -layers optimize 1.png 3.png ... hoge.gif
8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8