我在黑条上绘制一些文字,然后使用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
的。
现在说完所有,结果如下:
文字不是正好中等。它略微向右和向下。如何改进算法?
答案 0 :(得分:2)
请记住将font
传递给draw.textsize作为第二个参数(并确保您确实使用相同的text
和font
参数来绘制.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!")
结果: