python 使用Python的PIL将文本呈现为图像 - http://effbot.org/imagingbook/overview.htm

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用Python的PIL将文本呈现为图像 - http://effbot.org/imagingbook/overview.htm相关的知识,希望对你有一定的参考价值。

import os
from PIL import Image, ImageDraw, ImageFont

# make sure you have the fonts locally in a fonts/ directory
georgia_bold = 'fonts/georgia_bold.ttf'
georgia_bold_italic = 'fonts/georgia_bold_italic.ttf'

# W, H = (1280, 720) # image size
W, H = (720, 405) # image size
txt = 'Hello Petar this is my test image' # text to render
background = (0,164,201) # white
fontsize = 35
font = ImageFont.truetype(georgia_bold_italic, fontsize)

image = Image.new('RGBA', (W, H), background)
draw = ImageDraw.Draw(image)

# w, h = draw.textsize(txt) # not that accurate in getting font size
w, h = font.getsize(txt)

draw.text(((W-w)/2,(H-h)/2), txt, fill='white', font=font)
# draw.text((10, 0), txt, (0,0,0), font=font)
# img_resized = image.resize((188,45), Image.ANTIALIAS)

save_location = os.getcwd()

# img_resized.save(save_location + '/sample.jpg')
image.save(save_location + '/sample.png')

以上是关于python 使用Python的PIL将文本呈现为图像 - http://effbot.org/imagingbook/overview.htm的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 python 的 PIL 以一定角度绘制文本?

如何在Python 3中将QImage(QPixmap)转换为PIL图像?

Python使用PIL将jpg图片转化为png图片

Python 图像库 - 文本渲染

Python使用PIL将png图片转化为jpg图片

使用 Python PIL 的隐写算法