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

Wand docs中,指令非常简单,用于读取有序图像(例如GIF动画,图标文件等):

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

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

在Ruby中,使用RMagick很容易,因为你有ImageLists. (例如,见my gist.)

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

我也试过创建一个wand.sequence.Sequence并从那个角度出发,但也打了一个死胡同.我感到很失落.

解决方法:

最好的示例位于代码附带的单元测试中.以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')

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

上一篇:图形化编程娱乐于教,Kittenblock实例,随机数猜测押宝


下一篇:淘宝代购系统;海外代购系统;代购程序,代购系统源码PHP前端源码演示