Hi ,
Can anyone assist me on how to install FreeType 2.0.4
with php on windows?
Thanks
how to install FreeType 2.0.4
Moderator: General Moderators
you probably want this for truetype fonts in GD.
Then you don't need freetype (not on windows). All you have to do to enable gd (with truetype) is to make the php_gd or php_gd2.dll available to php. These .dlls are in the zip-package of php/win
in php.ini you have to set to the appropriate directory (e.g. mine is extension_dir = c:/programme/php423/extensions) and include one of the modules, e.g.loads gd but not gd2
Then you don't need freetype (not on windows). All you have to do to enable gd (with truetype) is to make the php_gd or php_gd2.dll available to php. These .dlls are in the zip-package of php/win
in php.ini you have to set
Code: Select all
; Directory in which the loadable extensions (modules) reside.
extension_dir =Code: Select all
extension=php_gd.dll
;extension=php_gd2.dll