これらの手順を使用して、Apple のストック Python (2.7.2) を使用して OS X 10.8 にaggdrawをインストールしました。そうする前に、homebrew を使用して 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 でフォントを読み込んで使用するにはどうすればよいですか?