当前位置:首页 > PHP教程 > php应用 > 列表

解决Call to undefined function imagettftext()方法

发布:smiling 来源: PHP粉丝网  添加日期:2016-08-30 14:41:34 浏览: 评论:0 

imagettftext是一个图形处理函数了,如果在使用imagettftext函数时碰到Call to undefined function imagettftext()的话就是函数组件没有打开了,所以我们只需要简单的配置即可.

在一个新环境中装Tipask v2.5的时候发现后台验证码无法显示,出错的函数是imagettftext(),由于index.php使用了error_reporting(0)将错误隐去,导致这次莫名的错误,去掉,错误立马出现:

Fatal error: Call to undefined function imagettftext()

现在我们就明确了,出现错误的原因是PHP编译时没有加上FreeType。

解决办法:

首先编译安装FreeType,以2.4.0为例:

  1. wget http://download.savannah.gnu.org/releases/freetype/freetype-2.4.0.tar.bz2 
  2. tar -jxf freetype-2.4.0.tar.bz2 
  3. cd reetype-2.4.0 
  4. # 安装到/usr/local/freetype 
  5. ./configure –prefix=/usr/local/freetype 
  6. make && make install 

下面我们重新编译PHP,加上参数–with-freetype-dir=/usr/local/freetype

./configure –with-freetype-dir=/usr/local/freetype

编译完成重启php

kill -USR2 `cat /usr/local/php/var/run/php-fpm.pid`

再GD库中找到FreeType Support说明安装成功!

需要注意的是,如果服务器freetype的版本是1.*,那么你可能需要改变编译参数为–with-ttf[=DIR],以下转自ChinaUnix论坛:

字库 配置开关

FreeType 1.x 要激活 FreeType 1.x 的支持,加上 –with-ttf[=DIR]。

FreeType 2 要激活 FreeType 2 的支持,加上 –with-freetype-dir=DIR。

T1lib 要激活 T1lib(Type 1 字体),加上 –with-t1lib[=DIR]。

本地 TrueType 字符串函数 要激活本地 TrueType 字符串函数的支持,加上 –enable-gd-native-ttf。

Tags: undefined imagettftext

分享到: