使用Imagemagick创建Gif - 转换:图像重叠

时间:2017-09-04 12:22:09

标签: imagemagick animated-gif

我正在尝试使用转换来制作带图像的gif。但是在生成的gif中,图像只是叠加在另一个上面。 这是创建的gif:https://i.imgur.com/EgISW2y.gif

我尝试用简单的命令创建它:

jj112233 -Matches as it has atleast one letter, digit. Not more than 2 consecutive digits/letter. Has atleast 6 characters jkhsfsndbf8uwwe -matches a1234 -does not match as length<6 nsds312 -matches 111aaa222 -does not match as it has more than 2 consecutive digits and also more than 2 repeated letters aa11bbsd -match hgshsadh12 -does not match as it has more than 2 `h` hh8uqweuu -does not match as it has more than 2 `u`

1 个答案:

答案 0 :(得分:2)

尝试将-dispose设置与previous选项一起使用,该选项在显示之前处置前一帧:

convert -dispose previous -delay 8 plot_* -loop 0 result.gif

进一步阅读here