用【python】自做动图

2022/2/26 11:52:01

本文主要是介绍用【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】自做动图的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程