用【python】自做动图

代码如下:

from PIL import Image, ImageSequence, ImageFont
import matplotlib.pyplot as plt
import os, random

myDir = 'windmill'  # 这里输入文件。

files = sorted(os.listdir(myDir))
font = ImageFont.trueype('anna.ttf',80)
text = '大风车吹啊吹'  # 这里输入文字。

frames = []
for i in range(len(files)):
    file = files[i]
    name, ext = os.path.splitext(file)
    if ext == '.png':
        img = Image.open('{}{}{}'.format(myDir,os.sep,file)).convert('RGB')
        draw = ImageDraw.Draw(img)
        txt = text[:i//4+1]
        draw.txet((50,600),txt,fill=(0,255,0),font=font)
        print(txt)
        frames.append(img)

# 合成动图
frames[0].save("windmill.gif",append_images=frames[1:],save_all=True)
	             #⬆这里也要输入文件

trip:(这里需要分帧图片)

效果图如下:
用【python】自做动图

上一篇:AS设置 Log 颜色


下一篇:git checkout 遇到的问题 Git-命令行-拯救“Your local changes to the following files would be overwritten by chec