1

我使用这些说明在 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 中加载和使用字体,我需要做什么?

4

1 回答 1

0

问题出在我的FREETYPE_ROOT. aggdraw的setup.py第32行应该如下:FREETYPE_ROOT = "/usr/local"

更改该行、重建和重新安装后,上面的 test.py 脚本工作正常。

我已经更新了我的安装脚本以应用该补丁。

于 2013-07-22T08:32:53.047 回答