LoginSignup
0
2

More than 5 years have passed since last update.

convert で複数の PNG 画像をアニメーション GIF にする

Posted at

人生には「ここにフレーム単位の PNG ファイルがある。これをなんとかアニメーション GIF にしてくれ!金ならいくらでも払う!」というときがしばしばある。Photoshop などを使ってもできるけど、 convert コマンドを使うと簡単にできる:

$ convert -delay 0 -loop 0 *.png animated.gif

ファイル名で絞り込むとフレームを落とすことも簡単にできる。

$ convert -delay 0 -loop 0 *0.png *3.png *6.png *9.png animated.gif

convert なのでついでにサイズを変更したりもできる。

0
2
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
0
2