PIL and to use ImageFont module

PIL is flexibility and useful library about image file. I tried to use it. Install is complete but can not use ImageFont module. Display error,

"ImportError: The _imagingft C module is not installed"

It happened, module doesn't exist. I google about it. and discovery same problem.

http://coffeeash.blogspot.com/2009/03/pil-for-osx-imagefontimagingft.html

PIL needs freetye2. so I have read README file. Line is written about feature library what library list that if you need it.

I downloaded freetype and install. follow this

tar jxfv freetype-2.3.11.tar.bz2
cd freetype-2.3.11/
./configure
make
sudo make install

and rebuild PIL, you move to PIL's directory

sudo python setup.py install

It is possible to use it by this.