是否将文本换行并将字体调整为PIL中的容器?
问题描述
我想创建一个用于制作宾果游戏的程序,除了将文本(范围从单个单词甚至整个句子)放入每个字段之外,我已经完成了所有设置。我应该如何开始对文本进行换行并调整字体大小以使其适合每个字段?
解决方案
我不知道使用PIL自动调整文本大小的方法,但您可以使用wand来实现。我对wand
没有太多经验,但是如果您希望文本自动换行和调整大小,可以使用caption()
方法。我在两次运行之间更改了代码,以便在用白色标记的区域中编写少量文本和相当长的文本:
#!/usr/bin/env python3
from wand.image import Image
from wand.drawing import Drawing
from wand.font import Font
# Create a red canvas 600x300
with Image(width=600, height=300, pseudo='xc:red') as canvas:
left, top, width, height = 10, 20, 400, 150
with Drawing() as context:
context.fill_color = 'white'
context.rectangle(left=left, top=top, width=width, height=height)
font = Font('/System/Library/Fonts/MarkerFelt.ttc')
context(canvas)
canvas.caption('Considerably longer text that will need a smaller font and some wrapping too', left=left, top=top, width=width, height=height, font=font, gravity='center')
canvas.save(filename='result.png')
有使用棒documentation中的Python的textwrap
的更复杂包装技术的示例。
关键词:魔杖、图像处理、python、字幕、自动换行、自动调整大小、自动换行。
相关文章