4

我无法弄清楚如何使用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
4

1 回答 1

-3

毕竟,我能够通过 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)
于 2013-07-12T03:01:45.327 回答