PIL字体显示为正方形

时间:2013-10-30 01:08:30

标签: python python-imaging-library

我有一个程序应该生成一个图像,其中随机放置一堆随机符号。当我运行它时,这就是创建的内容。enter image description here

我正在尝试使用的字体是symbol.ttf,我抓住了C:\ WINDOWS \ Fonts

这是我用来粘贴字符的代码:

font = 'fonts/symbol.ttf'  

t = Image.new("RGBA", (300,300))
draw = ImageDraw.Draw(t)

font = ImageFont.truetype(font, fontsize)

draw.text((70, 70), txt, (0,0,0), font=font)

t = t.rotate(rot)

image.paste(t,box,t)

0 个答案:

没有答案