这里只给出出问题的函数代码吧,
def create_strs():
c_chars = get_chars()
strs = ' %s ' % ' '.join(c_chars)
font = ImageFont.truetype('/Library/Fonts/Arial.ttf',18)#这里是photojudge.py的第38 行
font_width,font_height = font.getsize(strs)
draw.text(((width - font_width) / 3,(height - font_height) / 3),strs,font = font,fill = fg_color)
return ''.join(c_chars)
是不支持38行的字体格式吗?如何查看支持哪种字体格式?或者安装可以使支持这种格式?请老师指点,谢谢.