将一系列编号为PNG的文件转换为动画GIF的工具?


14

我使用Blender创建了一系列小的PNG文件,我想知道是否有工具(最好是在回购协议中)将其转换为动画GIF。

另外一项规定:该工具还必须能够将GIF的背景色设置为指定的颜色,因为PNG文件具有Alpha通道,我不希望GIF是透明的。

Answers:


20

是的,使用imagemagicks convert工具:

convert   -delay 20   -loop 0   frame*.png   animated.gif

这将采用所有源帧,并将它们制成一个动画GIF图像。-delay 20参数将导致每帧之间百分之二十秒的延迟,而-loop 0将导致gif反复循环。

至于设置gif的背景色,可以使用backgroundflatten标志来完成:

convert -delay 20 -loop 0 frame*.png -background white -flatten animated.gif

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.