正确居中文本(PIL / Pillow)

时间:2017-05-02 05:01:25

标签: python python-imaging-library pillow

我在黑条上绘制一些文字,然后使用PIL将结果粘贴在基本图像上。一个关键是将文本位置完美地放在黑色条带的中心。

我通过以下代码迎合了这一点:

from PIL import Image, ImageFont, ImageDraw

background = Image.new('RGB', (strip_width, strip_height)) #creating the black strip
draw = ImageDraw.Draw(background)
font = ImageFont.truetype("/usr/share/fonts/truetype/freefont/FreeSansBold.ttf", 16)
text_width, text_height = draw.textsize("Foooo Barrrr!")
position = ((strip_width-text_width)/2,(strip_height-text_height)/2)
draw.text(position,"Foooo Barrrr!",(255,255,255),font=font)
offset = (0,base_image_height/2)
base_image.paste(background,offset)

注意我是如何设置position的。

现在说完所有,结果如下:

enter image description here

文字不是正好中等。它略微向右和向下。如何改进算法?

1 个答案:

答案 0 :(得分:2)

请记住将font传递给draw.textsize作为第二个参数(并确保您确实使用相同的textfont参数来绘制.textsize和draw。文本)。

这对我有用:

from PIL import Image, ImageFont, ImageDraw

def center_text(img, font, text, color=(255, 255, 255)):
    draw = ImageDraw.Draw(img)
    text_width, text_height = draw.textsize(text, font)
    position = ((strip_width-text_width)/2,(strip_height-text_height)/2)
    draw.text(position, text, color, font=font)
    return img

用法:

strip_width, strip_height = 300, 50
text = "Foooo Barrrr!!"

background = Image.new('RGB', (strip_width, strip_height)) #creating the black strip
font = ImageFont.truetype("times", 24)
center_text(background, font, "Foooo Barrrr!")

结果:

fooobarrrr