- 论坛徽章:
- 0
|
Linux环境下,配置如下:
RHEL3(RH9)
GD,FreeType,Png,Jpeg,Zlib都是基于RPM包安装的.也确实有这些包.
PHP安装参数:
./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-gd --with-zlib --with-jpeg --with-freetype --with-xpm --with-ttf --enable-gd-native-ttf --enable-exif --enable-sockets --enable-ftp
make
make install
成功安装,也能在phpinfo()里面看到如下:
GD Support enabled
GD Version bundled (2.0.22 compatible)
FreeType Support enabled
FreeType Linkage with TTF library
GIF Read Support enabled
PNG Support enabled
WBMP Support enabled
XBM Support enabled
但却无法使用imagettftext函数.
无任何提示,也无任何错误,但也不做任何操作.
imagettftext($im, 20, 0, 0, 0, $red, "/usr/local/apache2/htdocs/font/arial.ttf","Testing..." ;
语法没错,也肯定支持GD库了,其实GD库函数没问题,但这个函数,就是不做任何操作,
而且,那个字体文件路径参数,改成什么,都不会报错.
好怪,不知大家在没有遇到这个情况,
PHP4.3.10 4.3.6我都试过,都是这样, |
|