使用PIL一次将文本移动到一个循环中降低一幅图像的位置

时间:2018-06-25 13:14:25

标签: python pillow

我是PIL的新手。我试图将多个图像循环保存,以更改文本在每个图像中的位置。

这是我的代码:

from PIL import Image, ImageDraw, ImageFont
import os

files = []
C = 0
base = Image.open('car.jpg').convert('RGBA')

txt = Image.new('RGBA', base.size, (255,255,255,0))

fnt = ImageFont.truetype('calibrib.ttf', 40)
d = ImageDraw.Draw(txt)

W = 0
while C < 175:
    d.text((0,W), "Test Text", font=fnt, fill=(255,255,255,255))
    out = Image.alpha_composite(base, txt)

    f = (3-len(str(C)))*'0'+str(C)
    folder = os.getcwd()
    out.save(folder + '/images/a%s.png' % f, "PNG")
    files.append('a%s.png' % f)

    W = W+1
    C =  C+1

这是第一个输出图像的样子: enter image description here

我想要的输出是在最后一张图像中垂直看到“测试文本”。

文本应在循环中一次向下移动一幅图像。

但是,相反,我得到了这个: enter image description here

1 个答案:

答案 0 :(得分:2)

ImageDraw.Draw调用使txt成为要在其上绘制的图像,每次调用d.text时,您都将在txt图像上绘制新文本,而不会从最后一次迭代中删除先前的文本。要解决此问题,您需要在每次迭代时重置txt对象。您可以通过致电

txt = Image.new('RGBA', base.size, (255,255,255,0))
d = ImageDraw.Draw(txt)

在while循环内。