使用convert制制作gif图片动画

                <<convert notes>>
            Tags: linux,linux-tool,ps,photo



1. Create an animated GIF on linux with `convert`


// 把当前目录下的所有bmp文件合成一个gif图片动画, 每帧间隔0ms, 重复播放.
//      -delay n     迟延n*10毫秒
//      -loop  n     播放n轮, 0表示不断地重复播放

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

使用convert制制作gif图片动画_第1张图片




// So to create an animation we use the convert command
$ convert -delay 50 frame1.gif frame1.gif frame1.gif -loop 0 animated.gif

// Also if we want to add a pause between each loop
$ convert -delay 50 frame1.gif -delay 100 frame1.gif -delay 150 frame1.gif -loop 0 -pause 200 animated.gif

// Also using convert we can combine 2 animated gifs
$ convert anim1.gif anim2.gif combined.gif

Enjoy!
Bookmark/Search this post with

// 把图片放缩为640x480
$ mogrify -resize 640x480 *.jpg

你可能感兴趣的:(linux,command,animation,each)