使用 PIL 在图片上叠加文字

Bin*_*hen 5 python python-imaging-library

我只是想在图片上写一些文字(可能有一些简单的效果,比如阴影)。我怎样才能用 PIL 做到这一点?

wim*_*wim 5

首先安装Python Imaging Library ( pip install Pillow)

注意:您可能需要更改字体文件的路径font_fname

import numpy as np
import PIL
import PIL.Image as Image
import PIL.ImageDraw as ImageDraw
import PIL.ImageFont as ImageFont

font_fname = '/usr/share/fonts/truetype/freefont/FreeSansBold.ttf'
font_size = 200
font = ImageFont.truetype(font_fname, font_size)

h, w = 1080, 1920
bg_colour = (255, 255, 255)
bg_image = np.dot(np.ones((h,w,3), dtype='uint8'), np.diag(np.asarray((bg_colour), dtype='uint8')))
image0 = Image.fromarray(bg_image)
draw = ImageDraw.Draw(image0)
draw.text((530, 160), "hello world", font=font, fill='rgb(0, 0, 0)')
image0.save('hello_world.jpg')
Run Code Online (Sandbox Code Playgroud)