我无法弄清楚如何使用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
我无法弄清楚如何使用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
毕竟,我能够通过 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)