安裝PIL
pip3 install pillow
使用PIL
from PIL import Image, ImageFont, ImageDraw
# image = Image.open('bg.jp') # 讀取圖片
image = Image.new('RGB', (250, 250), (255,255,255)) # 設置畫布大小及背景色
iwidth, iheight = image.size # 獲取畫布高寬
font = ImageFont.truetype('consola.ttf', 110) # 設置字體及字號
draw = ImageDraw.Draw(image)
fwidth, fheight = draw.textsize('22', font) # 獲取文字高寬
fontx = (iwidth - fwidth - font.getoffset('22')[0]) / 2
fonty = (iheight - fheight - font.getoffset('22')[1]) / 2
draw.text((fontx, fonty), '22', 'black', font)
image.save('1.jpg') # 保存圖片