码迷,mamicode.com
首页 > 其他好文 > 详细

使用PIL生成文字图片

时间:2020-10-20 16:21:15      阅读:24      评论:0      收藏:0      [点我收藏+]

标签:size   install   get   ttf   读取   安装   black   保存   pre   

安装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‘) # 保存图片

使用PIL生成文字图片

标签:size   install   get   ttf   读取   安装   black   保存   pre   

原文地址:https://blog.51cto.com/14284354/2542533

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!