如何使用Wand在Python中创建动画gif?

时间:2016-10-09 03:38:38

标签: python imagemagick animated-gif wand

Wand docs 读取序列图像(例如动画gif,图标文件等)的说明很简单:

>>> from wand.image import Image
>>> with Image(filename='sequence-animation.gif') as image:
...     len(image.sequence)

...但我不确定如何创建一个。

在Ruby中,使用 RMagick 很容易,因为你有ImageList个。 (有关示例,请参阅my gist。)

我尝试创建一个Image(作为“容器”)并使用图像路径实例化每个SingleImage,但我很确定这是错误的,特别是因为{{1的构造函数文档找不到最终用户使用。

我也试过创建一个SingleImage并从那个角度出发,但也是一个死胡同。我感到很失落。

1 个答案:

答案 0 :(得分:5)

最好的示例位于代码附带的单元测试中。例如wand/tests/sequence_test.py

要使用魔杖创建动画gif,请记住将图像加载到序列中,然后在加载所有帧后设置其他延迟/优化处理。

from wand.image import Image

with Image() as wand:
    # Add new frames into sequance
    with Image(filename='1.png') as one:
        wand.sequence.append(one)
    with Image(filename='2.png') as two:
        wand.sequence.append(two)
    with Image(filename='3.png') as three:
        wand.sequence.append(three)
    # Create progressive delay for each frame
    for cursor in range(3):
        with wand.sequence[cursor] as frame:
            frame.delay = 10 * (cursor + 1)
    # Set layer type
    wand.type = 'optimize'
    wand.save(filename='animated.gif')

output animated.gif