我使用这些说明在 OS X 10.8 上安装了aggdraw,使用 Apple 的 Python (2.7.2) 。在此之前,我使用自制软件安装 freetype,并修改了 aggdraw 的 setup.py 以指向我的 freetype 安装(第 32 行)。FREETYPE_ROOT = "/usr/local/Cellar/freetype/2.4.10/"
尽管如此,当我尝试加载字体时,我得到:
$ 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 中加载和使用字体,我需要做什么?