我已经安装aggdraw在OS X 10.8使用使用苹果股票的Python(2.7.2) 这些指令 。 在这样做之前,我用自制安装FreeType的,我修改aggdraw的setup.py指向我的FreeType安装( FREETYPE_ROOT = "/usr/local/Cellar/freetype/2.4.10/"
的第32行)。
尽管这一切,当我尝试加载字体,我得到:
$ python test.py
Traceback (most recent call last):
File "test.py", line 9, in <module>
font = Font('black', '/Library/Fonts/Georgia.ttf')
IOError: cannot load font (no text renderer)
test.py看起来是这样的:
from PIL import Image
from aggdraw import Draw, Brush, Pen, Font
size = 500, 500
img = Image.new("RGBA", size)
draw = Draw(img)
draw.rectangle((0, 0) + size, Brush((255, 255, 255), opacity=255))
draw.setantialias(True)
font = Font('black', '/Library/Fonts/Georgia.ttf')
draw.text((100, 100), "hello, world", font)
draw.flush()
img.save("test.png")
我需要做什么才能加载和aggdraw使用的字体呢?