我很难弄清楚如何使用Wand ImageMagick绑定来编写基本序列到动画gif。
我想在python中重现的基本转换ImageMagick命令:
convert -delay 50 -size 500x500 xc:SkyBlue \
-page +5+10 /test/wizard.gif \
-page +62+50 test/wizard2.gif \
-loop 0 animation.gif
答案 0 :(得分:-2)
毕竟我只能通过os.system()将命令传递给终端来解决这个问题:
build = '''convert -delay 30 -size 500x500 \
-page +0+0 /Users/jkeilson/desktop/photobooth/flower.jpg \
-page +0+0 /Users/jkeilson/desktop/photobooth/wizard2.gif \
-page +0+0 /Users/jkeilson/desktop/photobooth/flower.jpg \
-page +0+0 /Users/jkeilson/desktop/photobooth/wizard2.gif \
-loop 0 animation6.gif'''
os.system(build)