PHP Fatal error: Call to undefined function: imagettfbbox()
It appears I lack this function, imagettfbbox().
php.net says "This function requires both the GD library and the FreeType library."
This is how I compiled my php:
./configure --with-apxs2=/usr/local/apache2/bin/apxs --with- mysql=/usr/local/mysql --enable-trans-id --with-zlib --with-gd --enable-gd-native-ttf --with-jpeg-dir=/usr/local/bin --with-png --with-zlib --with-freetype-dir=/usr/local/include/freetype2 --with-ttf --disable-cgi
Configure, make, and install all completed successfully without error.
I am running:
OSF1 V4.0 1229 alpha alpha unknown Tru64
Apache2, php4.3.4
A little more info:
$ php -v
PHP 4.3.4 (cli) (built: Mar 13 2004 18:31:26)
Copyright (c) 1997-2003 The PHP Group
Zend Engine v1.3.0, Copyright (c) 1998-2003 Zend Technologies
$ php -m
[PHP Modules]
ctype
gd
mysql
overload
pcre
posix
session
standard
tokenizer
xml
zlib
What am I missing that is keeping me from using this function?
Let me know if you need any more info.
Thanks so much!